/* ==========================================================================
   Nexa Reach Digital — Printer Services Page Modern Stylesheet
   Matches reference design: 
   - Dark navy desktop nav + phone pill button
   - Crisp modern hero with checklist & dual pill CTA
   - Stats counter strip (5000+, 100+, 24/7, 98%)
   - About service section with support agent image & 4 feature pills
   - Why choose us 6-card grid with circular blue icon badges
   - Blue CTA banner "Never Let Printer Issues Slow You Down!"
   - Buying guide section with printer graphic
   - Popular printer models 6-card grid
   - 4-column modern dark footer + legal copyright bar
   - Mobile: Nav hidden, fixed top bar + fixed bottom bar with phone number
   ========================================================================== */

:root {
  --theme-navy: #082245;
  --theme-navy-dark: #05162e;
  --theme-blue: #0c75ff;
  --theme-blue-hover: #005ce6;
  --theme-blue-light: #f0f6ff;
  --theme-blue-badge: #e6f0ff;
  --theme-gray-bg: #f5f8fc;
  --theme-border: #e2ecf5;
  --theme-text-dark: #0e2038;
  --theme-text-muted: #536780;
  --theme-white: #ffffff;
  --theme-green-accent: #10b981;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--theme-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ==========================================================================
   MOBILE FIXED BARS (TOP & BOTTOM PATTI)
   Requirement: Nav hide on mobile, top & bottom fixed bars with phone number
   ========================================================================== */
.mobile-top-bar {
  display: none;
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 991px) {
  /* HIDE DESKTOP NAV COMPLETELY ON MOBILE */
  .desktop-navbar {
    display: none !important;
  }

  /* Body offsets for fixed top & bottom bars */
  body {
    padding-top: 52px !important;
    padding-bottom: 60px !important;
  }

  /* Fixed Top Patti */
  .mobile-top-bar {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: linear-gradient(90deg, #071f3d 0%, #0c75ff 100%);
    color: #ffffff;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    padding: 0 12px;
  }

  .mobile-top-bar a.mobile-call-link {
    color: #ffffff;
    font-weight: 800;
    font-size: 15.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  .mobile-top-bar .call-pulse-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ffb400;
    color: #082245;
    border-radius: 50%;
    font-size: 13px;
    animation: icon-pulse 1.8s infinite;
  }

  /* Fixed Bottom Patti */
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: linear-gradient(90deg, #0c75ff 0%, #0050cc 100%);
    color: #ffffff;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.3);
    padding: 0 12px;
  }

  .mobile-bottom-bar a.mobile-call-btn {
    color: #ffffff;
    font-weight: 800;
    font-size: 16.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.16);
    padding: 9px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    width: 100%;
    max-width: 380px;
  }
}

@keyframes icon-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(255, 180, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

/* ==========================================================================
   DESKTOP NAVBAR
   Dark blue background, logo on left, links, and blue pill phone button
   ========================================================================== */
.desktop-navbar {
  background-color: var(--theme-navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(5, 22, 46, 0.15);
}

.desktop-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-navbar .brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
}

.desktop-navbar .nav-links-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
  align-items: center;
}

.desktop-navbar .nav-links-list li a {
  color: #e2edf8;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.desktop-navbar .nav-links-list li a:hover,
.desktop-navbar .nav-links-list li a.active {
  color: var(--theme-blue);
}

/* Services Dropdown Styling */
.desktop-navbar .nav-item-dropdown {
  position: relative;
}

.desktop-navbar .nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.desktop-navbar .nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 10px;
  box-shadow: 0 15px 35px rgba(5, 22, 46, 0.22) !important;
  border: 1px solid #e2ecf5 !important;
  display: none;
  z-index: 1050;
  list-style: none;
}

/* Invisible bridge so mouse hover doesn't break when moving into the menu */
.desktop-navbar .nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.desktop-navbar .nav-item-dropdown:hover .dropdown-menu,
.desktop-navbar .nav-item-dropdown .dropdown-menu.show {
  display: block;
  animation: dropdownFade 0.22s ease forwards;
}

.desktop-navbar .nav-item-dropdown .dropdown-item {
  color: var(--theme-navy) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.desktop-navbar .nav-item-dropdown .dropdown-item:hover,
.desktop-navbar .nav-item-dropdown .dropdown-item.active {
  background-color: var(--theme-blue-light);
  color: var(--theme-blue) !important;
  padding-left: 24px;
}

.desktop-navbar .nav-item-dropdown .dropdown-item i {
  color: var(--theme-blue);
  font-size: 15px;
  width: 18px;
  flex-shrink: 0;
}

.desktop-navbar .nav-item-dropdown .dropdown-divider {
  margin: 6px 0;
  border-top: 1px solid #e8f0f8;
  list-style: none;
}

.desktop-navbar .nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--theme-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(12, 117, 255, 0.3);
}

.desktop-navbar .nav-phone-btn:hover {
  background-color: var(--theme-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12, 117, 255, 0.4);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background-color: var(--theme-blue);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(12, 117, 255, 0.25);
}

.btn-primary-pill:hover {
  background-color: var(--theme-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(12, 117, 255, 0.35);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--theme-blue) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--theme-blue);
  transition: all 0.25s ease;
}

.btn-outline-pill:hover {
  background-color: var(--theme-blue);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background-color: #ffffff;
  color: var(--theme-navy) !important;
  font-weight: 800;
  font-size: 15.5px;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white-pill:hover {
  background-color: #f0f7ff;
  color: var(--theme-blue) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   Clean light background, eyebrow, bold title, checklist, dual CTA buttons,
   and right collage with script accent
   ========================================================================== */
.printer-hero-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--theme-blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-main-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--theme-navy);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-main-title .text-blue-accent {
  color: var(--theme-blue);
}

.hero-subtext {
  font-size: 16px;
  color: var(--theme-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 530px;
}

.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

@media (max-width: 575px) {
  .hero-checklist {
    grid-template-columns: 1fr;
  }
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--theme-text-dark);
}

.hero-checklist li i {
  color: var(--theme-blue);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right visual */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-visual-backdrop {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, #e5f1ff 0%, #f0f7ff 65%, transparent 100%);
  z-index: 1;
}

.hero-visual-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(10, 37, 64, 0.12));
}

.hero-script-tag {
  position: absolute;
  top: 15px;
  right: 25px;
  z-index: 3;
  text-align: right;
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #1a4270;
  line-height: 1.1;
  transform: rotate(-3deg);
}

.hero-script-tag span {
  display: block;
  font-style: italic;
  color: var(--theme-blue);
}

.hero-script-tag .script-arrow {
  width: 50px;
  height: 25px;
  margin-top: 4px;
  margin-left: auto;
  display: block;
}

/* ==========================================================================
   STATS COUNTER STRIP
   Elevated white card with 4 columns: 5000+, 100+, 24/7, 98%
   ========================================================================== */
.stats-strip-container {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.stats-strip-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--theme-border);
  box-shadow: 0 10px 30px rgba(12, 117, 255, 0.07);
  padding: 24px 15px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 10px 8px;
}

.stat-icon {
  font-size: 26px;
  color: var(--theme-blue);
  margin-bottom: 8px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--theme-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--theme-text-muted);
}

.stat-col-divider {
  border-right: 1px solid var(--theme-border);
}

@media (max-width: 767px) {
  .stat-col-divider {
    border-right: none;
    border-bottom: 1px solid var(--theme-border);
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
}

/* ==========================================================================
   SECTION: TRUSTED DESTINATION FOR EXPERT PRINTER SETUP & REPAIR
   ========================================================================== */
.trusted-about-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.about-agent-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(8, 34, 69, 0.1);
  max-width: 520px;
  margin: 0 auto;
}

.about-agent-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-feature-pills-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-pill-item {
  flex: 1 1 200px;
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--theme-navy);
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.04);
  transition: all 0.25s ease;
}

.feature-pill-item i {
  color: var(--theme-blue);
  font-size: 18px;
}

.feature-pill-item:hover {
  border-color: var(--theme-blue);
  box-shadow: 0 6px 18px rgba(12, 117, 255, 0.12);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION: WHY CHOOSE US
   6-card grid with circular blue icon badges
   ========================================================================== */
.why-choose-section {
  background-color: var(--theme-gray-bg);
  padding: 75px 0 70px;
}

.section-heading-centered {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--theme-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title .text-blue-accent {
  color: var(--theme-blue);
}

.heading-decorative-line {
  width: 48px;
  height: 4px;
  background-color: var(--theme-blue);
  border-radius: 4px;
  margin: 10px auto 0;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.03);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 117, 255, 0.1);
  border-color: #c9e0ff;
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--theme-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(12, 117, 255, 0.25);
}

.why-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--theme-navy);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 14.5px;
  color: var(--theme-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   BLUE CTA BANNER: NEVER LET PRINTER ISSUES SLOW YOU DOWN!
   ========================================================================== */
.blue-banner-cta-section {
  padding: 25px 0 45px;
  background-color: var(--theme-gray-bg);
}

.blue-banner-card {
  background: linear-gradient(135deg, #09479e 0%, #0c75ff 100%);
  border-radius: 18px;
  padding: 38px 46px;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(12, 117, 255, 0.22);
}

@media (max-width: 767px) {
  .blue-banner-card {
    padding: 30px 22px;
    text-align: center;
  }
}

.banner-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.banner-title .highlight-text {
  color: #6ee7b7;
}

.banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ==========================================================================
   BUYING GUIDE SECTION: HELPFUL EXTRA FEATURES TO LOOK FOR IN A PRINTER
   ========================================================================== */
.buying-guide-section {
  padding: 70px 0 65px;
  background: #ffffff;
}

.guide-visual-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.guide-visual-dome {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle, #e2f0ff 0%, #f2f7fc 70%, transparent 100%);
  z-index: 1;
}

.guide-visual-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 25px rgba(8, 34, 69, 0.12));
}

/* ==========================================================================
   POPULAR PRINTER MODELS SECTION
   ========================================================================== */
.printer-products-section {
  background-color: var(--theme-gray-bg);
  padding: 75px 0 85px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  padding: 22px 16px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.28s ease;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.03);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #b8d8ff;
  box-shadow: 0 10px 24px rgba(12, 117, 255, 0.1);
}

.product-img-box {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-img-box img {
  max-height: 110px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--theme-navy);
  margin-bottom: 6px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-blue);
  margin-bottom: 14px;
}

.btn-product-support {
  background-color: var(--theme-blue);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 50px;
  display: block;
  width: 100%;
  border: none;
  transition: all 0.2s ease;
}

.btn-product-support:hover {
  background-color: var(--theme-blue-hover);
  color: #ffffff !important;
}

/* ==========================================================================
   FOOTER SECTION
   4 columns on dark navy + legal copyright bar
   ========================================================================== */
.modern-footer {
  background-color: var(--theme-navy);
  color: #c4d6ea;
  padding: 70px 0 25px;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: inline-block;
}

.footer-bio {
  font-size: 14px;
  line-height: 1.65;
  color: #9cb5d3;
  margin-bottom: 22px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: var(--theme-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

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

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list li a {
  color: #9cb5d3;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #9cb5d3;
  margin-bottom: 12px;
}

.footer-contact-list li i {
  color: var(--theme-blue);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-list li a:hover {
  color: var(--theme-blue);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 25px;
  font-size: 13.5px;
  color: #8aa7c9;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links li a {
  color: #8aa7c9;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-legal-links li a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 12px;
  }
}
