/* ============================================================
   MOSOFT — Shared Stylesheet  (WordPress / Elementor build)
   This is the original site stylesheet, kept intact so the
   imported Elementor templates render pixel-identical.
   Loaded via functions.php as "mosoft-main".
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Backup Supplies — palette derived from the logo (azure + navy) */
  --navy:       #002147;   /* deep brand navy (dark sections)        */
  --navy-2:     #013e72;   /* gradient mid                           */
  --navy-3:     #001a3a;   /* gradient deep                          */
  --accent:     #0d9dd8;   /* logo azure — underlines / highlights   */
  --accent-dark:#0b8cc2;
  --accent-soft:#7fd1f2;   /* light azure (icons on dark)            */
  --primary:    #0e7bb5;   /* primary action / buttons (deep azure)  */
  --primary-dark:#0b6492;  /* button hover                           */

  /* Legacy aliases: every old `var(--red)` rule now resolves to the
     new primary blue, so the whole UI recolors with zero rule edits. */
  --red:      var(--primary);
  --dark-red: var(--primary-dark);

  --dark:     #111111;
  --mid:      #444444;
  --light:    #f5f5f5;
  --white:    #ffffff;
  --border:   #e0e0e0;
  --footer-bg: rgba(2, 27, 51, 0.93);   /* slightly transparent navy */
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* ── TOP TICKER BAR ── */
.topbar {
  background: var(--navy);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 34px;
}

.topbar-ticker-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 50px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.topbar-ticker:hover {
  animation-play-state: paused;
}

.topbar-ticker-item {
  font-size: 11px;
  color: #ddd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.topbar-ticker-item i {
  color: var(--accent-soft);
  font-size: 10px;
}

.topbar-ticker-sep {
  color: #334;
  font-size: 16px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topbar-contact {
  background: var(--red);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  flex-shrink: 0;
}

.topbar-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar-contact a:hover {
  opacity: 0.8;
}

.topbar-contact i {
  font-size: 10px;
}

/* ── HEADER ── */
header.mosoft-header,
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -1px;
  text-decoration: none;
}

.logo-text span {
  color: var(--red);
}

/* ── NAV ── */
nav.mosoft-nav,
#main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav.mosoft-nav a,
#main-nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}

nav.mosoft-nav a:hover,
nav.mosoft-nav a.active,
#main-nav a:hover,
#main-nav a.active {
  background: var(--red);
  color: var(--white);
}

nav.mosoft-nav a.quote-btn,
#main-nav a.quote-btn {
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}

nav.mosoft-nav a.quote-btn:hover,
#main-nav a.quote-btn:hover {
  background: var(--dark-red);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* ── HERO (Home) ── */
.hero {
  background: linear-gradient(90deg, rgba(0,33,71,0.92) 0%, rgba(0,33,71,0.62) 42%, rgba(0,33,71,0.30) 100%), url('img/hero-home.jpg') center center / cover no-repeat;
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 20px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #7fb3f5;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 .highlight {
  color: var(--accent);
  display: block;
}

.hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-red:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 14px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--red);
  padding: 28px 20px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  text-align: center;
  color: var(--white);
}

.feature-item i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.feature-item h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── SECTIONS ── */
section.mosoft-section,
section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--mid);
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header .underline {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

section.alt-bg {
  background: var(--light);
}

/* ── CLIENTS GRID ── */
.clients-grid {
  display: grid;
  /* 15 logos -> even rows (5 x 3). No more ragged half-filled last row. */
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.client-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.client-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.client-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
}

.client-item span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  color: var(--mid);
}

/* ── ABOUT STRIP (Home) ── */
.about-strip {
  background: var(--navy);
  color: var(--white);
  padding: 70px 20px;
}

.about-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text h2 span {
  color: var(--red);
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.88;
}

.about-img-placeholder {
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.15);
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-thumb {
  width: 100%;
  height: 190px;
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-info .brand {
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 12px;
}

.product-info .brand span {
  font-weight: 700;
}

.product-info a {
  margin-top: auto;
}

.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

/* ── BRANDS SLIDER ── */
.brands-slider-wrap {
  overflow: hidden;
}

.brands-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: slide 22s linear infinite;
  width: max-content;
}

.brands-slider:hover {
  animation-play-state: paused;
}

.brand-logo-box {
  width: 130px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  transition: box-shadow 0.2s;
}

.brand-logo-box:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.brand-logo-box span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── INDUSTRIES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.industry-card:hover {
  transform: scale(1.04);
}

.industry-card .ind-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.industry-card .label {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(0, 33, 71, 0.85);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.5px;
}

/* ── PRODUCT CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.12);
}

.cat-card .cat-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.cat-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  padding: 60px 20px;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

/* ── ABOUT PAGE ── */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.about-box {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  border-radius: 8px;
}

.about-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.about-box p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  border-top: 4px solid var(--red);
}

.testimonial p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testimonial .author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial .author strong {
  font-size: 13px;
  color: var(--navy);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 36px;
  border-radius: 8px;
}

.contact-info-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon i {
  color: var(--white);
  font-size: 16px;
}

.contact-detail h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  line-height: 1.5;
}

.contact-detail a {
  color: var(--white);
  text-decoration: none;
}

.contact-detail a:hover {
  color: #7fb3f5;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 8px;
}

.contact-form-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
}

/* ── FORMS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: #e8edf2;
  border-radius: 8px;
  margin-top: 40px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mid);
}

.map-placeholder i {
  font-size: 40px;
  color: var(--red);
}

.map-placeholder p {
  font-size: 14px;
  font-weight: 600;
}

.map-placeholder small {
  font-size: 12px;
  opacity: 0.7;
}

/* ── BRANDS FULL PAGE ── */
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.brand-full-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.brand-full-card .brand-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.brand-full-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ── QUOTE PAGE ── */
.quote-card {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px;
}

.quote-card h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quote-card > p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ── SUCCESS ALERT ── */
.alert-success {
  display: none;
  margin-top: 14px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: var(--red);
  color: var(--white);
}

/* ── FOOTER ── */
footer.mosoft-footer,
footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 60px 20px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--red);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #aaa;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: var(--white);
  font-size: 12px;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.newsletter-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 0 3px 3px 0;
  font-weight: 700;
}

.newsletter-form button:hover {
  background: var(--dark-red);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  border-top: 1px solid #222;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
}

/* ============================================================
   ELEMENTOR COMPATIBILITY LAYER
   Elementor wraps everything in .e-con / .elementor-widget-container.
   These rules stop Elementor's default spacing from fighting the
   original full-bleed sections that live inside HTML widgets.
   ============================================================ */

/* Let HTML-widget sections span edge-to-edge inside boxed containers. */
.elementor-widget-html .topbar,
.elementor-widget-html .features-strip,
.elementor-widget-html .about-strip,
.elementor-widget-html section,
.elementor-widget-html footer { margin-left: 0; margin-right: 0; }

/* Remove the default gap Elementor adds around a lone HTML widget. */
.elementor-widget-html .elementor-widget-container { line-height: normal; }

/* Make the native Hero container hold the original padding/min-height. */
.elementor-element .hero { width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-inner       { grid-template-columns: repeat(2, 1fr); }
  .clients-grid         { grid-template-columns: repeat(3, 1fr); }
  .products-grid        { grid-template-columns: repeat(2, 1fr); }
  .categories-grid      { grid-template-columns: repeat(2, 1fr); }
  .industries-grid      { grid-template-columns: repeat(2, 1fr); }
  .brands-full-grid     { grid-template-columns: repeat(3, 1fr); }
  .about-flex           { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .about-boxes          { grid-template-columns: 1fr; }
  .testimonials         { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  #main-nav { display: none; }
  #main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px;
    border-bottom: 3px solid var(--red);
    z-index: 999;
  }
  .hamburger              { display: block; }
  .footer-inner           { grid-template-columns: 1fr; }
  .products-grid          { grid-template-columns: repeat(2, 1fr); }
  .categories-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid        { grid-template-columns: repeat(2, 1fr); }
  .clients-grid           { grid-template-columns: repeat(3, 1fr); }
  .brands-full-grid       { grid-template-columns: repeat(2, 1fr); }
  .topbar-contact         { display: none; }
}

/* ============================================================
   OUR STORE — nav button + "coming soon" popup
   Button + modal markup live in each page's header HTML widget;
   the open/close wiring is in assets/js/main.js.
   "Our Store" uses the lighter azure (with navy text) so it reads
   as distinct from the deep-azure "Quote NOW" button next to it.
   ============================================================ */
nav.mosoft-nav a.store-btn,
#main-nav a.store-btn {
  background: var(--accent);
  color: var(--navy);
  border-radius: 4px;
}
nav.mosoft-nav a.store-btn:hover,
#main-nav a.store-btn:hover {
  background: var(--accent-dark);
  color: var(--navy);
}

.store-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}
.store-modal-overlay.open { display: flex; }

.store-modal {
  background: var(--white);
  max-width: 380px;
  width: 100%;
  border-radius: 10px;
  padding: 34px 26px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  font-family: 'Open Sans', sans-serif;
  animation: storePop 0.2s ease;
}
@keyframes storePop {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.store-modal .sm-icon { font-size: 42px; color: #0d9dd8; margin-bottom: 14px; }
.store-modal h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.store-modal p { font-size: 14px; color: var(--mid); line-height: 1.6; margin: 0 0 22px; }
.store-modal .sm-close-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.store-modal .sm-close-btn:hover { background: var(--dark-red); }
.store-modal .sm-x {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  line-height: 1;
  color: #bbb;
  background: none;
  border: none;
  cursor: pointer;
}
.store-modal .sm-x:hover { color: #666; }

/* native-bridge */
/* hero text */
.hero-sub .elementor-heading-title{font-size:13px;text-transform:uppercase;letter-spacing:3px;color:#7fb3f5;margin-bottom:10px;}
.hero-title .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:clamp(32px,5vw,60px);font-weight:900;line-height:1.1;text-transform:uppercase;color:#fff;margin:0 0 16px;}
.hero-title .highlight{color:var(--accent);display:block;}
.hero-desc{max-width:520px !important;}
.hero-desc .elementor-text-editor,.hero-desc p{font-size:16px;line-height:1.6;color:#fff;opacity:.92;text-shadow:0 1px 2px rgba(0,0,0,.5);margin:0 0 30px;}
/* buttons */
.btn-red,.btn-outline{width:auto !important;display:inline-block !important;vertical-align:top;}
.btn-outline{margin-left:14px;}
.btn-red-sm{display:block !important;width:100% !important;text-align:center;margin-top:auto;}
.btn-red .elementor-button,.btn-outline .elementor-button,.btn-red-sm .elementor-button{display:inline-block;width:auto;border-radius:4px;font-family:'Open Sans',sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:1px;border:none;line-height:normal;transition:all .2s;}
.btn-red .elementor-button{background:var(--red);color:#fff;padding:14px 36px;font-size:14px;}
.btn-red-sm .elementor-button{background:var(--red);color:#fff;padding:7px 14px;font-size:11px;letter-spacing:.5px;}
.btn-red .elementor-button:hover,.btn-red-sm .elementor-button:hover{background:var(--dark-red);}
.btn-outline .elementor-button{background:transparent;color:#fff;padding:13px 32px;border:2px solid #fff;font-size:14px;}
.btn-outline .elementor-button:hover{background:#fff;color:var(--navy);}
/* features */
.feature-item .elementor-icon{font-size:30px;color:#fff;}
.feature-item .elementor-icon-box-icon{margin-bottom:10px;}
.feature-item .elementor-icon-box-title{color:#fff;font-size:16px;text-transform:uppercase;margin:0 0 4px;font-weight:700;font-family:'Roboto',sans-serif;}
.feature-item .elementor-icon-box-description{color:#fff;font-size:13px;opacity:.9;line-height:1.5;}
/* section header */
.sec-title{text-align:center;}
.sec-title .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:clamp(22px,3vw,34px);font-weight:900;text-transform:uppercase;color:var(--navy);margin-bottom:12px;}
.sec-title .elementor-heading-title::after{content:'';display:block;width:60px;height:4px;background:var(--accent);margin:14px auto 0;border-radius:2px;}
.sec-sub{text-align:center;margin-bottom:40px;}
.sec-sub .elementor-text-editor,.sec-sub p{color:var(--mid);font-size:15px;max-width:650px;margin:0 auto;line-height:1.6;}
/* clients grid */
#bs-clients-grid .elementor-widget-wrap{display:grid !important;grid-template-columns:repeat(5,1fr);gap:20px;align-content:start;}
#bs-clients-grid .elementor-widget{width:100% !important;}
.client-item{background:#fff;border:1px solid var(--border);border-radius:8px;padding:14px;}
.client-item .elementor-image-box-wrapper{display:flex;flex-direction:column;align-items:center;}
.client-item .elementor-image-box-img{margin:0 0 8px;}
.client-item .elementor-image-box-img img{width:70px;height:70px;object-fit:contain;border-radius:50%;}
.client-item .elementor-image-box-title{font-size:10px;font-weight:600;text-align:center;color:var(--mid);margin:0;}
/* about */
.about-title .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:32px;font-weight:900;text-transform:uppercase;margin-bottom:16px;color:#fff;}
.about-title .elementor-heading-title span{color:var(--accent);}
.about-desc .elementor-text-editor,.about-desc p{font-size:15px;line-height:1.8;opacity:.88;color:#fff;}
#bs-about-flex .elementor-container{display:grid !important;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
#bs-about-flex .elementor-column{width:auto !important;}
.about-imgph{min-height:300px;display:flex !important;align-items:center;justify-content:center;border-radius:8px;background:linear-gradient(135deg,var(--navy-2),var(--navy-3));width:100% !important;}
.about-imgph .elementor-icon{font-size:80px;color:rgba(255,255,255,.2);}
/* brands marquee */
#bs-brands-track,#bs-brands-track .elementor-column{overflow:hidden;width:auto;}
#bs-brands-track .elementor-column{width:100% !important;}
#bs-brands-track .elementor-widget-wrap{display:flex !important;flex-wrap:nowrap !important;gap:40px;align-items:center;width:max-content;animation:slide 22s linear infinite;}
#bs-brands-track .elementor-widget.brand-logo-box{width:130px !important;flex:0 0 130px !important;height:60px !important;}
.brand-logo-box{width:130px !important;height:60px;background:#fff;border:1px solid var(--border);border-radius:6px;display:flex !important;align-items:center;justify-content:center;padding:10px;}
.brand-logo-box .elementor-heading-title{font-weight:700;color:var(--navy);font-size:15px;margin:0;}
/* industries grid */
#bs-ind-grid .elementor-container{display:grid !important;grid-template-columns:repeat(4,1fr);gap:20px;}
#bs-ind-grid .elementor-column{width:auto !important;aspect-ratio:1;border-radius:8px;overflow:hidden;}
#bs-ind-grid .elementor-widget-wrap{display:flex !important;flex-direction:column;height:100%;padding:0 !important;}
#bs-ind-grid .elementor-widget{width:100% !important;}
.ind-emoji{flex:1;}
.ind-emoji .elementor-heading-title{font-size:40px;height:100%;display:flex;align-items:center;justify-content:center;margin:0;}
.ind-label .elementor-heading-title{background:rgba(0,33,71,.85);color:#fff;font-size:11px;font-weight:700;text-transform:uppercase;text-align:center;padding:10px;letter-spacing:.5px;margin:0;}
/* categories grid */
#bs-cat-grid .elementor-container{display:grid !important;grid-template-columns:repeat(5,1fr);gap:18px;align-items:start;}
#bs-cat-grid .elementor-column{width:auto !important;background:#fff;border:1px solid var(--border);border-radius:8px;}
#bs-cat-grid .elementor-widget-wrap{padding:20px 14px !important;display:flex;flex-direction:column;height:100%;}
#bs-cat-grid .elementor-widget{width:100% !important;}
.cat-icon .elementor-heading-title{font-size:36px;text-align:center;margin:0 0 12px;}
.cat-name .elementor-heading-title{font-size:12px;font-weight:700;text-transform:uppercase;color:var(--navy);text-align:center;margin:0 0 10px;}
/* responsive */
@media(max-width:900px){#bs-clients-grid .elementor-widget-wrap{grid-template-columns:repeat(3,1fr);}#bs-cat-grid .elementor-container{grid-template-columns:repeat(3,1fr);}#bs-ind-grid .elementor-container{grid-template-columns:repeat(2,1fr);}#bs-about-flex .elementor-container{grid-template-columns:1fr;}}
@media(max-width:600px){#bs-clients-grid .elementor-widget-wrap{grid-template-columns:repeat(2,1fr);}#bs-cat-grid .elementor-container{grid-template-columns:repeat(2,1fr);}.btn-outline{margin-left:0;}}/* native-bridge-3 */
.ph-title .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:42px;font-weight:900;text-transform:uppercase;color:#fff;margin:0;}
.ph-crumb{margin-top:10px;} .ph-crumb .elementor-text-editor,.ph-crumb p{font-size:12px;opacity:.7;color:#fff;margin:0;} .ph-crumb a{color:#fff;text-decoration:none;}
#bs-brandpage-grid .elementor-container{display:grid !important;grid-template-columns:repeat(5,1fr);gap:20px;align-items:start;}
#bs-brandpage-grid .elementor-column{width:auto !important;background:#fff;border:1px solid var(--border);border-radius:8px;}
#bs-brandpage-grid .elementor-widget-wrap{padding:24px 16px !important;} #bs-brandpage-grid .elementor-widget{width:100% !important;}
.brand-icon-w .elementor-heading-title{font-size:36px;text-align:center;margin:0 0 12px;}
.brand-name-w .elementor-heading-title{font-size:14px;font-weight:700;color:var(--navy);text-align:center;margin:0;}
.bs-cta{text-align:center;margin-top:40px;} .bs-cta .elementor-text-editor,.bs-cta p{color:#444;font-size:14px;margin-bottom:20px;}
.btn-red-c{display:block !important;width:100% !important;text-align:center;}
@media(max-width:900px){#bs-brandpage-grid .elementor-container{grid-template-columns:repeat(3,1fr);}}@media(max-width:600px){#bs-brandpage-grid .elementor-container{grid-template-columns:repeat(2,1fr);}}
/* native-bridge-4 */
.ac-h2 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:28px;font-weight:900;color:var(--navy);text-transform:uppercase;margin:0 0 20px;}
.ac-h3 .elementor-heading-title{color:var(--accent);font-size:16px;text-transform:uppercase;margin:0 0 10px;}
.ac-p .elementor-text-editor,.ac-p p{font-size:15px;line-height:1.8;color:#444;margin:0 0 24px;}
#bs-aboutboxes .elementor-container{display:grid !important;grid-template-columns:repeat(3,1fr);gap:24px;margin:40px 0;}
#bs-aboutboxes .elementor-column{width:auto !important;background:var(--navy);border-radius:8px;}
#bs-aboutboxes .elementor-widget-wrap{padding:28px !important;} #bs-aboutboxes .elementor-widget{width:100% !important;}
.abox-h3 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:16px;font-weight:700;text-transform:uppercase;color:var(--accent-soft);margin:0 0 10px;}
.abox-p .elementor-text-editor,.abox-p p{font-size:13px;line-height:1.7;opacity:.9;color:#fff;margin:0;}
#bs-testimonials .elementor-container{display:grid !important;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch;} #bs-testimonials .elementor-column .elementor-widget-wrap{align-content:flex-start;}
#bs-testimonials .elementor-column{width:auto !important;background:#fff;border:1px solid var(--border);border-top:4px solid var(--red);border-radius:8px;}
#bs-testimonials .elementor-widget-wrap{padding:24px !important;display:flex;flex-wrap:wrap;align-items:center;}
#bs-testimonials .tm-quote{width:100% !important;} #bs-testimonials .tm-quote .elementor-text-editor,#bs-testimonials .tm-quote p{font-size:13px;line-height:1.7;color:var(--mid);font-style:italic;margin:0 0 16px;}
#bs-testimonials .tm-avatar{width:44px !important;flex:0 0 44px;margin-right:12px;} #bs-testimonials .tm-avatar .elementor-heading-title{width:44px;height:44px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:16px;margin:0;}
#bs-testimonials .tm-name{width:auto !important;} #bs-testimonials .tm-name .elementor-heading-title{font-size:13px;color:var(--navy);font-weight:700;margin:0;}
#bs-partners{overflow:hidden;} #bs-partners .elementor-column{overflow:hidden;width:100% !important;} #bs-partners .elementor-widget-wrap{display:flex !important;flex-wrap:nowrap !important;gap:30px;align-items:center;width:max-content;animation:bs-marquee 28s linear infinite;} #bs-partners .elementor-widget.partner-box{width:140px !important;flex:0 0 140px;} @keyframes bs-marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.partner-box{width:140px !important;height:50px;background:#fff;border:1px solid var(--border);border-radius:6px;display:flex !important;align-items:center;justify-content:center;} .partner-box .elementor-heading-title{font-weight:700;color:var(--navy);font-size:14px;margin:0;}
@media(max-width:768px){#bs-aboutboxes .elementor-container,#bs-testimonials .elementor-container{grid-template-columns:1fr;}}
/* native-bridge-5 */
.ci-h2 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:26px;font-weight:900;text-transform:uppercase;color:#fff;margin:0 0 28px;}
#bs-contact-grid .elementor-container{display:grid !important;grid-template-columns:1fr 1.4fr;gap:50px;align-items:start;}
#bs-contact-grid .elementor-column{width:auto !important;}
#bs-contact-grid .elementor-column:first-child{background:var(--navy);border-radius:8px;}
#bs-contact-grid .elementor-column:first-child>.elementor-widget-wrap,#bs-contact-grid .elementor-column:first-child>.elementor-element-populated{padding:36px !important;}
#bs-contact-grid .elementor-column:last-child{background:#fff;border:1px solid var(--border);border-radius:8px;}
#bs-contact-grid .elementor-column:last-child>.elementor-widget-wrap,#bs-contact-grid .elementor-column:last-child>.elementor-element-populated{padding:36px !important;}
.ci-detail{margin-bottom:4px;} .ci-detail .elementor-icon-box-icon{margin-right:14px;}
.ci-detail .elementor-icon{width:42px;height:42px;background:var(--red);border-radius:50%;display:inline-flex !important;align-items:center;justify-content:center;}
.ci-detail .elementor-icon i{color:#fff;font-size:16px;}
.ci-detail .elementor-icon-box-title{font-size:11px !important;text-transform:uppercase;letter-spacing:1px;opacity:.6;margin:0 0 4px;color:#fff;}
.ci-detail .elementor-icon-box-description{font-size:14px;line-height:1.5;color:#fff;margin:0;}
.ci-social{margin-top:16px;} .ci-social .elementor-social-icon{background:#222 !important;color:#aaa !important;} .ci-social .elementor-social-icon:hover{background:var(--red) !important;color:#fff !important;}
.cf-h2 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:22px;font-weight:700;color:var(--navy);margin:0 0 6px;}
.cf-p .elementor-text-editor,.cf-p p{font-size:14px;color:#444;line-height:1.6;margin:0 0 20px;}
#bs-map .elementor-column{width:100% !important;background:#e8edf2;border-radius:8px;}
#bs-map .elementor-widget-wrap,#bs-map .elementor-element-populated{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:300px;gap:10px;padding:20px !important;}
.map-ph-icon{margin-top:40px;} .map-ph-icon .elementor-icon{font-size:40px;color:var(--accent);} .map-ph-txt .elementor-text-editor,.map-ph-txt p{color:var(--mid);font-size:14px;text-align:center;margin:0;}
@media(max-width:768px){#bs-contact-grid .elementor-container{grid-template-columns:1fr;}}
/* native-bridge-6 */
#bs-quote-card .elementor-column{background:#fff;border:1px solid var(--border);border-radius:8px;}
#bs-quote-card .elementor-widget-wrap,#bs-quote-card .elementor-element-populated{padding:40px !important;}
.qc-h2 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:22px;font-weight:700;color:var(--navy);margin:0 0 6px;}
.qc-p .elementor-text-editor,.qc-p p{font-size:14px;color:#444;line-height:1.6;margin:0 0 24px;}
.qc-note{margin-top:24px;} .qc-note .elementor-text-editor,.qc-note p{background:#f5f5f5;border-radius:6px;padding:18px;font-size:12px;color:#444;line-height:1.7;margin:0;} .qc-note a{color:var(--accent);text-decoration:none;}
/* native-bridge-7 */
.fc-h2 .elementor-heading-title{font-family:'Roboto',sans-serif;font-size:28px;font-weight:900;color:var(--navy);text-transform:uppercase;margin:0 0 20px;}
.fc-h3 .elementor-heading-title{color:var(--red);font-size:16px;text-transform:uppercase;font-weight:700;margin:8px 0 10px;}
.fc-p .elementor-text-editor,.fc-p p{font-size:15px;line-height:1.8;color:var(--mid);margin:0 0 24px;}
.fc-list .elementor-text-editor ul,.fc-list ul{margin:0 0 24px;padding-left:22px;list-style:disc;} .fc-list li{font-size:15px;line-height:1.8;color:var(--mid);margin-bottom:6px;}
/* native-bridge-8 */
#bs-clients-grid .elementor-widget-wrap{align-items:start !important;}
#bs-clients-grid .elementor-widget.client-item{height:165px !important;min-height:165px !important;max-height:165px !important;overflow:hidden !important;display:flex !important;padding:14px !important;box-sizing:border-box !important;}
#bs-clients-grid .client-item>.elementor-widget-container{width:100%;height:100%;display:flex;}
#bs-clients-grid .client-item .elementor-image-box-wrapper{width:100%;height:100%;display:flex !important;flex-direction:column;align-items:center;justify-content:center;margin:0 !important;}
#bs-clients-grid .client-item .elementor-image-box-img{margin:0 0 10px !important;flex:0 0 auto;}
#bs-clients-grid .client-item .elementor-image-box-img img{width:64px !important;height:64px !important;object-fit:contain !important;border-radius:50% !important;}
#bs-clients-grid .client-item .elementor-image-box-title{font-size:10px !important;line-height:1.3 !important;font-weight:600 !important;text-align:center !important;color:var(--mid) !important;margin:0 !important;}
.btn-red .elementor-button,.btn-outline .elementor-button{padding:14px 34px !important;font-size:14px !important;border-radius:4px !important;box-sizing:border-box !important;box-shadow:none !important;border:2px solid transparent !important;min-width:185px;text-align:center;letter-spacing:1px;}
.btn-red .elementor-button::before,.btn-red .elementor-button::after,.btn-outline .elementor-button::before,.btn-outline .elementor-button::after{display:none !important;}
.btn-red .elementor-button-wrapper,.btn-outline .elementor-button-wrapper{background:transparent !important;}
.btn-red .elementor-button,.btn-red .elementor-button:focus{background-color:var(--red) !important;color:#fff !important;border-color:var(--red) !important;}
.btn-red .elementor-button:hover{background-color:var(--dark-red) !important;border-color:var(--dark-red) !important;color:#fff !important;}
.btn-outline .elementor-button,.btn-outline .elementor-button:focus{background-color:transparent !important;color:#fff !important;border-color:#fff !important;}
.btn-outline .elementor-button:hover{background-color:#fff !important;color:var(--navy) !important;border-color:#fff !important;}
/* bs-native-hf */
#bs-topbar{overflow:hidden;} #bs-topbar > .elementor-container{overflow:hidden;max-width:100%;} #bs-topbar-track .elementor-widget-wrap{display:flex !important;flex-wrap:nowrap !important;align-items:center;width:max-content !important;animation:bs-ticker 38s linear infinite;} #bs-topbar-track .elementor-widget-wrap > .elementor-element{width:auto !important;} .topbar-ticker-item .elementor-heading-title{color:#cfe0f5;font-size:12.5px;font-weight:500;padding:7px 0;white-space:nowrap;font-family:'Open Sans',sans-serif;} .topbar-ticker-item{margin-right:34px;} .topbar-ticker-item i{color:#7fd1f2;margin-right:7px;} @keyframes bs-ticker{0%{transform:translateX(0);}100%{transform:translateX(-50%);}} #bs-header-row > .elementor-container{align-items:center;} #bs-logo-col img{height:48px;width:auto;display:block;} #bs-nav-col .elementor-widget-wrap{display:flex !important;flex-direction:row;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:2px;} #bs-nav-col .elementor-widget-wrap > .elementor-element{width:auto !important;} .bs-navlink .elementor-button{background:transparent !important;color:#002147 !important;font-family:'Open Sans',sans-serif;font-weight:600;font-size:15px;padding:8px 15px !important;border-radius:0 !important;box-shadow:none !important;text-transform:none;letter-spacing:0;border:none !important;} .bs-navlink .elementor-button:hover{color:#0e7bb5 !important;background:transparent !important;} .bs-navlink .elementor-button .elementor-button-text{font-weight:600;} .bs-quote-btn .elementor-button{background:#0e7bb5 !important;color:#fff !important;font-weight:700;font-size:13.5px;padding:11px 22px !important;border-radius:4px !important;text-transform:uppercase;letter-spacing:.5px;margin-left:10px;border:none !important;box-shadow:none !important;} .bs-quote-btn .elementor-button:hover{background:#0b6492 !important;} .bs-store-btn .elementor-button{background:#002147 !important;color:#fff !important;font-weight:700;font-size:13.5px;padding:11px 22px !important;border-radius:4px !important;text-transform:uppercase;letter-spacing:.5px;margin-left:8px;border:none !important;box-shadow:none !important;} .bs-store-btn .elementor-button:hover{background:#001a3a !important;} #bs-footer{background:rgba(2,27,51,0.97) !important;} #bs-footer > .elementor-container{align-items:flex-start;} #bs-footer .bs-footer-logo img{height:40px;width:auto;margin-bottom:16px;} #bs-footer .footer-h .elementor-heading-title{color:#fff;font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;margin:0 0 16px;font-family:'Roboto',sans-serif;} #bs-footer ul{list-style:none;margin:0;padding:0;} #bs-footer ul li{margin-bottom:9px;} #bs-footer ul li a{color:#b9c4d4;text-decoration:none;font-size:13.5px;transition:color .2s;} #bs-footer ul li a:hover{color:#7fd1f2;} #bs-footer .bs-foot-contact p{color:#b9c4d4;font-size:13px;line-height:1.55;margin:0 0 10px;} #bs-footer .bs-foot-contact a{color:#b9c4d4;text-decoration:none;} #bs-footer .bs-foot-contact a:hover{color:#7fd1f2;} #bs-footer .bs-foot-contact i{color:#7fd1f2;margin-right:8px;width:15px;} #bs-footer .social-links{margin-top:6px;} #bs-footer .social-links a{color:#fff;background:rgba(255,255,255,.1);width:32px;height:32px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;margin-right:7px;transition:background .2s;} #bs-footer .social-links a:hover{background:#0e7bb5;} #bs-footer .nl-label{font-size:11px;color:#aaa;font-weight:700;margin:0 0 8px;letter-spacing:.5px;} #bs-footer .newsletter-form{display:flex;} #bs-footer .newsletter-form input{flex:1;padding:9px 10px;border:none;border-radius:4px 0 0 4px;font-size:12px;} #bs-footer .newsletter-form button{background:#0e7bb5;color:#fff;border:none;padding:0 16px;border-radius:0 4px 4px 0;font-weight:700;cursor:pointer;font-size:12px;} #bs-footer .biz-status{font-size:11px;color:#8ea3bd;line-height:1.7;margin-top:16px;} #bs-footer .biz-status strong{color:#aab6c7;} #bs-footer-bottom .bs-fb-line p{color:#8ea3bd;font-size:12px;text-align:center;margin:3px 0;line-height:1.5;} @media(max-width:880px){#bs-nav-col .elementor-widget-wrap{justify-content:center;} #bs-header-row > .elementor-container{flex-wrap:wrap;} #bs-logo-col,#bs-nav-col{width:100% !important;} #bs-footer > .elementor-container{flex-wrap:wrap;}} #bs-store-modal{position:fixed;inset:0;background:rgba(0,20,45,.6);display:none;align-items:center;justify-content:center;z-index:99999;} #bs-store-modal.open{display:flex;} #bs-store-modal .bs-modal-card{background:#fff;border-radius:10px;max-width:420px;width:90%;padding:38px 30px;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.3);position:relative;} #bs-store-modal .bs-modal-icon{font-size:46px;color:#0e7bb5;margin-bottom:14px;} #bs-store-modal h3{font-family:'Roboto',sans-serif;color:#002147;font-size:22px;margin:0 0 10px;} #bs-store-modal p{color:#555;font-size:14px;margin:0 0 22px;} #bs-store-modal .bs-modal-ok{background:#0e7bb5;color:#fff;border:none;padding:11px 30px;border-radius:5px;font-weight:700;cursor:pointer;font-size:14px;} #bs-store-modal .bs-modal-ok:hover{background:#0b6492;} #bs-store-modal .bs-modal-x{position:absolute;top:12px;right:16px;font-size:22px;color:#999;cursor:pointer;line-height:1;border:none;background:none;}