/* ==========================================================================
   PREMIUM LIGHT-THEME DESIGN SYSTEM - Nirvaz Digital Services
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito+Sans:wght@400;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

/* CSS Custom Variables */
:root {
  /* Brand Colors */
  --color-primary: #2D6CDF;      /* Electric Blue */
  --color-accent: #FF6A3D;       /* Orange Accent */
  --color-navy: #1D3557;         /* Deep Navy Blue */
  
  /* Background / Surface Colors (Light Theme by Default) */
  --color-bg-white: #ffffff;     /* Pure White Canvas */
  --color-bg-light: #F5F7FA;     /* Soft Blue-Grey Surface */
  --color-bg-grey: #F1F1F1;      /* Standard Brand Light Grey */
  
  /* Background / Surface Colors (Dark Theme Blocks) */
  --color-bg-dark: #0f1a2c;      /* Premium Dark Space Background */
  --color-surface-dark: #1D3557; /* Slate Navy Card Background */
  
  /* Text Colors (High Contrast & Legibility) */
  --text-title: #1D3557;         /* Brand Navy for High Visibility Headings */
  --text-body: #2d3748;          /* Slate 800 for clean body copy */
  --text-muted: #5e6d82;         /* Cool Grey for supporting text */
  
  /* Text Colors for Dark Sections */
  --text-title-dark: #ffffff;
  --text-body-dark: #cbd5e1;
  --text-muted-dark: #94a3b8;
  
  /* Accent States */
  --color-success: #10b981;      /* Emerald Green */
  --color-success-bg: rgba(16, 185, 129, 0.08);
  --color-primary-transparent: rgba(45, 108, 223, 0.08);
  --color-accent-transparent: rgba(255, 106, 61, 0.08);
  --color-navy-transparent: rgba(29, 53, 87, 0.08);

  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Container Constraints */
  --max-width: 1200px;
  --section-padding: 90px 20px;
  --section-padding-mobile: 50px 16px;
  
  /* Borders and Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --border-light: 1px solid rgba(29, 53, 87, 0.08);
  --border-dark: 1px solid rgba(248, 250, 252, 0.1);
  --border-primary: 1px solid rgba(45, 108, 223, 0.15);
  
  /* Shadows & Neon Glows */
  --shadow-sm: 0 2px 10px rgba(29, 53, 87, 0.04);
  --shadow-md: 0 12px 30px rgba(29, 53, 87, 0.07);
  --shadow-lg: 0 20px 45px rgba(29, 53, 87, 0.12);
  --glow-blue: 0 0 30px rgba(45, 108, 223, 0.18);
  --glow-orange: 0 0 35px rgba(255, 106, 61, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   RESET & SYSTEM WRAPPER
   ========================================================================== */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.nirvaz-billing-wrapper {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--color-bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

.nirvaz-billing-wrapper *, 
.nirvaz-billing-wrapper *::before, 
.nirvaz-billing-wrapper *::after {
  box-sizing: border-box;
}

.nirvaz-billing-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nirvaz-billing-wrapper button, 
.nirvaz-billing-wrapper input, 
.nirvaz-billing-wrapper select, 
.nirvaz-billing-wrapper textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

.nirvaz-billing-wrapper button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Custom Scrollbar for Workspace */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-navy);
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.nirvaz-billing-wrapper .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nirvaz-billing-wrapper .section {
  padding: var(--section-padding);
  position: relative;
}

@media (max-width: 768px) {
  .nirvaz-billing-wrapper .section {
    padding: var(--section-padding-mobile);
  }
}

.nirvaz-billing-wrapper .text-center { text-align: center; }

/* Text Gradient Effect */
.nirvaz-billing-wrapper .text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a4fcf 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

/* Section Background Variations */
.nirvaz-billing-wrapper .bg-light {
  background-color: var(--color-bg-light);
}
.nirvaz-billing-wrapper .bg-grey {
  background-color: var(--color-bg-grey);
}
.nirvaz-billing-wrapper .bg-white {
  background-color: var(--color-bg-white);
}

/* Typography styles */
.nirvaz-billing-wrapper h1, 
.nirvaz-billing-wrapper h2, 
.nirvaz-billing-wrapper h3, 
.nirvaz-billing-wrapper h4, 
.nirvaz-billing-wrapper h5, 
.nirvaz-billing-wrapper h6 {
  font-family: var(--font-heading);
  color: var(--text-title);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.nirvaz-billing-wrapper h1 { font-size: 3.25rem; letter-spacing: -0.03em; }
.nirvaz-billing-wrapper h2 { font-size: 2.35rem; letter-spacing: -0.02em; }
.nirvaz-billing-wrapper h3 { font-size: 1.55rem; letter-spacing: -0.01em; }
.nirvaz-billing-wrapper h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  .nirvaz-billing-wrapper h1 { font-size: 2.25rem; }
  .nirvaz-billing-wrapper h2 { font-size: 1.85rem; }
  .nirvaz-billing-wrapper h3 { font-size: 1.35rem; }
}

/* Styling Badges */
.nirvaz-billing-wrapper .section-tag {
  display: inline-block;
  padding: 6px 18px;
  background-color: var(--color-primary-transparent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: var(--border-primary);
}

.nirvaz-billing-wrapper .section-tag-orange {
  display: inline-block;
  padding: 6px 18px;
  background-color: var(--color-accent-transparent);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 106, 61, 0.2);
}

.nirvaz-billing-wrapper .section-subtitle {
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.nirvaz-billing-wrapper .bg-dark .section-subtitle {
  color: var(--text-muted-dark);
}

/* Buttons with Hover animations */
.nirvaz-billing-wrapper .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  gap: 8px;
  border: none;
}

.nirvaz-billing-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1552cf 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(45, 108, 223, 0.25);
}

.nirvaz-billing-wrapper .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 108, 223, 0.4);
}

.nirvaz-billing-wrapper .btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff521a 100%);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 106, 61, 0.25);
}

.nirvaz-billing-wrapper .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 106, 61, 0.4);
}

.nirvaz-billing-wrapper .btn-secondary {
  background-color: var(--color-bg-white);
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.nirvaz-billing-wrapper .btn-secondary:hover {
  background-color: var(--color-navy);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(29, 53, 87, 0.15);
}

.nirvaz-billing-wrapper .btn-secondary-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.nirvaz-billing-wrapper .btn-secondary-white:hover {
  background-color: #ffffff;
  color: var(--color-navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* Premium Card Designs */
.nirvaz-billing-wrapper .premium-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.nirvaz-billing-wrapper .premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-blue);
  border-color: rgba(45, 108, 223, 0.2);
}

/* Background Glowing Orbs */
.nirvaz-billing-wrapper .glow-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(90px);
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.nirvaz-billing-wrapper .glow-orb-primary {
  background: var(--color-primary);
  width: 450px;
  height: 450px;
}

.nirvaz-billing-wrapper .glow-orb-accent {
  background: var(--color-accent);
  width: 350px;
  height: 350px;
}

/* Entrance Animations */
.nirvaz-billing-wrapper .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.nirvaz-billing-wrapper .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.nirvaz-billing-wrapper .delay-100 { transition-delay: 0.1s; }
.nirvaz-billing-wrapper .delay-200 { transition-delay: 0.2s; }
.nirvaz-billing-wrapper .delay-300 { transition-delay: 0.3s; }
.nirvaz-billing-wrapper .delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   SECTION 1 - HERO SECTION
   ========================================================================== */
.nirvaz-billing-wrapper .hero {
  padding-top: 80px;
  padding-bottom: 90px;
  overflow: hidden;
  background: radial-gradient(circle at 90% 10%, rgba(45, 108, 223, 0.04) 0%, rgba(255, 106, 61, 0.02) 60%, var(--color-bg-white) 100%);
  position: relative;
}

.nirvaz-billing-wrapper .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 5;
}

.nirvaz-billing-wrapper .hero-content {
  position: relative;
}

.nirvaz-billing-wrapper .hero-title {
  font-size: 3.5rem;
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-title);
}

.nirvaz-billing-wrapper .hero-title span {
  display: inline-block;
  color: var(--color-primary);
}

.nirvaz-billing-wrapper .hero-subheading {
  font-size: 1.35rem;
  color: var(--color-navy);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.45;
}

.nirvaz-billing-wrapper .hero-description {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  line-height: 1.6;
}

.nirvaz-billing-wrapper .hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 3.5rem;
}

.nirvaz-billing-wrapper .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 53, 87, 0.08);
}

.nirvaz-billing-wrapper .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .badge-item i, 
.nirvaz-billing-wrapper .badge-item svg {
  color: var(--color-success);
  font-size: 1.05rem;
}

/* Custom Interactive Mockup Frame */
.nirvaz-billing-wrapper .hero-mockup-wrapper {
  position: relative;
}

.nirvaz-billing-wrapper .mockup-container {
  position: relative;
  width: 100%;
}

.nirvaz-billing-wrapper .laptop-frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(29, 53, 87, 0.15), var(--glow-blue);
  border: 4px solid var(--color-navy);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg) scale(1.02);
  transition: transform var(--transition-slow);
}

.nirvaz-billing-wrapper .laptop-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.nirvaz-billing-wrapper .mobile-frame {
  position: absolute;
  bottom: -35px;
  right: -25px;
  width: 175px;
  border-radius: 22px;
  border: 4px solid var(--color-navy);
  box-shadow: 0 20px 45px rgba(29, 53, 87, 0.22), var(--glow-orange);
  overflow: hidden;
  z-index: 10;
  transition: transform var(--transition-slow);
}

.nirvaz-billing-wrapper .mobile-frame:hover {
  transform: translateY(-8px) scale(1.06) rotate(-2deg);
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .nirvaz-billing-wrapper .hero-title {
    font-size: 2.85rem;
  }

  .nirvaz-billing-wrapper .hero-description {
    border-left: none;
    border-top: 3px solid var(--color-accent);
    padding-left: 0;
    padding-top: 15px;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
  }

  .nirvaz-billing-wrapper .hero-buttons {
    justify-content: center;
  }

  .nirvaz-billing-wrapper .trust-badges {
    justify-content: center;
  }

  .nirvaz-billing-wrapper .laptop-frame {
    transform: none;
  }

  .nirvaz-billing-wrapper .mobile-frame {
    width: 145px;
    bottom: -20px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .nirvaz-billing-wrapper .hero-title {
    font-size: 2.25rem;
  }

  .nirvaz-billing-wrapper .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .nirvaz-billing-wrapper .hero-buttons .btn {
    width: 100%;
  }
  
  .nirvaz-billing-wrapper .mobile-frame {
    display: none; /* Avoid visual clutter on tiny phones */
  }
}

/* ==========================================================================
   SECTION 2 - SOFTWARE OVERVIEW
   ========================================================================== */
.nirvaz-billing-wrapper .overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
  margin-top: 10px;
}

.nirvaz-billing-wrapper .overview-card {
  padding: 45px 35px;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nirvaz-billing-wrapper .overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}

.nirvaz-billing-wrapper .overview-card:hover::before {
  width: 100%;
}

.nirvaz-billing-wrapper .card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary-transparent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  box-shadow: inset 0 2px 5px rgba(45, 108, 223, 0.05);
}

.nirvaz-billing-wrapper .overview-card:nth-child(even) .card-icon-wrapper {
  background-color: var(--color-accent-transparent);
  color: var(--color-accent);
}

.nirvaz-billing-wrapper .overview-card:nth-child(even)::before {
  background: var(--color-accent);
}

.nirvaz-billing-wrapper .card-title {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .overview-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.nirvaz-billing-wrapper .card-features-list {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid rgba(29, 53, 87, 0.05);
  padding-top: 20px;
  width: 100%;
}

.nirvaz-billing-wrapper .card-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
}

.nirvaz-billing-wrapper .card-features-list li i, 
.nirvaz-billing-wrapper .card-features-list li svg {
  font-size: 0.85rem;
  color: var(--color-primary);
}

.nirvaz-billing-wrapper .overview-card:nth-child(even) .card-features-list li i,
.nirvaz-billing-wrapper .overview-card:nth-child(even) .card-features-list li svg {
  color: var(--color-accent);
}

/* ==========================================================================
   SECTION 3 - WHY CHOOSE THIS SOFTWARE
   ========================================================================== */
.nirvaz-billing-wrapper .why-choose-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.nirvaz-billing-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.nirvaz-billing-wrapper .benefit-card {
  padding: 22px 24px;
}

.nirvaz-billing-wrapper .benefit-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .benefit-icon {
  color: var(--color-success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Premium Metrics Counters Block */
.nirvaz-billing-wrapper .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nirvaz-billing-wrapper .stat-item {
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-light);
  border: var(--border-light);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 108, 223, 0.25);
  box-shadow: var(--shadow-md), var(--glow-blue);
  background: var(--color-bg-white);
}

.nirvaz-billing-wrapper .stat-item:nth-child(even):hover {
  border-color: rgba(255, 106, 61, 0.25);
  box-shadow: var(--shadow-md), var(--glow-orange);
}

.nirvaz-billing-wrapper .stat-number {
  font-size: 3.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.nirvaz-billing-wrapper .stat-item:nth-child(even) .stat-number {
  color: var(--color-accent);
}

.nirvaz-billing-wrapper .stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .nirvaz-billing-wrapper .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .nirvaz-billing-wrapper .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 4 - SCREENSHOT SHOWCASE
   ========================================================================== */
.nirvaz-billing-wrapper .showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .nirvaz-billing-wrapper .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .nirvaz-billing-wrapper .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.nirvaz-billing-wrapper .showcase-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  cursor: pointer;
  background: var(--color-bg-white);
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow-blue);
  border-color: rgba(45, 108, 223, 0.2);
}

.nirvaz-billing-wrapper .showcase-image-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10.5;
  background-color: var(--color-navy);
}

.nirvaz-billing-wrapper .showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nirvaz-billing-wrapper .showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 53, 87, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  color: white;
  padding: 20px;
}

.nirvaz-billing-wrapper .showcase-overlay i, 
.nirvaz-billing-wrapper .showcase-overlay svg {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-accent);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.nirvaz-billing-wrapper .showcase-overlay span {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nirvaz-billing-wrapper .showcase-item:hover img {
  transform: scale(1.12);
}

.nirvaz-billing-wrapper .showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.nirvaz-billing-wrapper .showcase-info {
  padding: 20px;
  background: var(--color-bg-white);
  border-top: 1px solid rgba(29, 53, 87, 0.04);
}

.nirvaz-billing-wrapper .showcase-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .showcase-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Fullscreen Lightbox Frame */
.nirvaz-billing-wrapper .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 14, 26, 0.96);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

.nirvaz-billing-wrapper .lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.nirvaz-billing-wrapper .lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nirvaz-billing-wrapper .lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 70px rgba(0,0,0,0.8), var(--glow-blue);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: #0d1527;
}

.nirvaz-billing-wrapper .lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: white;
  font-size: 2.25rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.nirvaz-billing-wrapper .lightbox-close:hover {
  color: var(--color-accent);
}

.nirvaz-billing-wrapper .lightbox-caption {
  color: #cbd5e1;
  text-align: center;
  margin-top: 15px;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 700px;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 5 - INVOICE FEATURE HIGHLIGHT
   ========================================================================== */
.nirvaz-billing-wrapper .invoice-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.nirvaz-billing-wrapper .invoice-preview-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: var(--border-light);
  background: var(--color-bg-white);
  transition: all var(--transition-slow);
}

.nirvaz-billing-wrapper .invoice-preview-card:hover {
  transform: translateY(-8px) rotate(1.5deg) scale(1.01);
  box-shadow: var(--shadow-lg), var(--glow-blue);
  border-color: rgba(45, 108, 223, 0.25);
}

.nirvaz-billing-wrapper .invoice-bullet-list {
  list-style: none;
  margin-top: 28px;
}

.nirvaz-billing-wrapper .invoice-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.nirvaz-billing-wrapper .invoice-bullet-list li i, 
.nirvaz-billing-wrapper .invoice-bullet-list li svg {
  color: var(--color-success);
  margin-top: 4px;
  font-size: 1.25rem;
  flex-shrink: 0;
  background-color: var(--color-success-bg);
  padding: 4px;
  border-radius: var(--radius-sm);
}

.nirvaz-billing-wrapper .invoice-bullet-list li span {
  font-weight: 700;
  color: var(--color-navy);
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .invoice-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .nirvaz-billing-wrapper .invoice-preview-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   SECTION 6 - BUSINESS TYPES
   ========================================================================== */
.nirvaz-billing-wrapper .business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.nirvaz-billing-wrapper .business-card {
  padding: 35px 25px;
}

.nirvaz-billing-wrapper .business-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(45, 108, 223, 0.06) 0%, rgba(255, 106, 61, 0.06) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 1.95rem;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .business-card:hover .business-icon-wrapper {
  background: var(--color-primary);
  color: white;
  transform: rotate(360deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(45, 108, 223, 0.25);
}

.nirvaz-billing-wrapper .business-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0px;
}

/* ==========================================================================
   SECTION 7 - SECURITY & CLOUD SYNC (Premium Dark Block)
   ========================================================================== */
.nirvaz-billing-wrapper .security-section {
  background: radial-gradient(circle at 30% 30%, #152745 0%, var(--color-bg-dark) 90%);
  color: white;
  overflow: hidden;
}

.nirvaz-billing-wrapper .security-section h2 {
  color: white;
}

.nirvaz-billing-wrapper .security-section .section-subtitle {
  color: var(--text-body-dark);
}

.nirvaz-billing-wrapper .security-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nirvaz-billing-wrapper .security-graphic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 350px;
}

.nirvaz-billing-wrapper .cloud-pulse-circle {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1px solid rgba(45, 108, 223, 0.25);
  animation: pulse-ring 4.5s infinite linear;
}

.nirvaz-billing-wrapper .cloud-pulse-circle:nth-child(1) { width: 130px; height: 130px; animation-delay: 0s; }
.nirvaz-billing-wrapper .cloud-pulse-circle:nth-child(2) { width: 230px; height: 230px; animation-delay: 1.5s; }
.nirvaz-billing-wrapper .cloud-pulse-circle:nth-child(3) { width: 330px; height: 330px; animation-delay: 3.0s; }

.nirvaz-billing-wrapper .security-center-icon {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.35rem;
  box-shadow: var(--glow-blue), 0 0 0 10px rgba(45, 108, 223, 0.15);
  z-index: 10;
  animation: float-slow 3.5s ease-in-out infinite;
}

.nirvaz-billing-wrapper .floating-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-surface-dark);
  border: var(--border-dark);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.nirvaz-billing-wrapper .f-icon-1 { top: 35px; left: 55px; color: var(--color-accent); animation: float-slow 4.2s ease-in-out infinite; }
.nirvaz-billing-wrapper .f-icon-2 { bottom: 55px; right: 35px; color: var(--color-success); animation: float-slow 5.2s ease-in-out infinite 1.2s; }
.nirvaz-billing-wrapper .f-icon-3 { bottom: 35px; left: 75px; color: var(--color-primary); animation: float-slow 3.2s ease-in-out infinite 2.2s; }
.nirvaz-billing-wrapper .f-icon-4 { top: 75px; right: 75px; color: white; animation: float-slow 4.8s ease-in-out infinite 0.6s; }

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 0.45; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.nirvaz-billing-wrapper .security-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nirvaz-billing-wrapper .security-benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(29, 53, 87, 0.35);
  border-radius: var(--radius-md);
  border: var(--border-dark);
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .security-benefit-item:hover {
  transform: translateX(10px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  background: rgba(29, 53, 87, 0.55);
}

.nirvaz-billing-wrapper .sec-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-transparent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(45, 108, 223, 0.2);
}

.nirvaz-billing-wrapper .security-benefit-item:nth-child(2) .sec-icon-box {
  background: var(--color-accent-transparent);
  color: var(--color-accent);
  border: 1px solid rgba(255, 106, 61, 0.2);
}

.nirvaz-billing-wrapper .security-benefit-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: white;
}

.nirvaz-billing-wrapper .security-benefit-item p {
  font-size: 0.92rem;
  color: var(--text-muted-dark);
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .security-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ==========================================================================
   SECTION 8 - TESTIMONIALS
   ========================================================================== */
.nirvaz-billing-wrapper .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
}

.nirvaz-billing-wrapper .testimonial-card {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nirvaz-billing-wrapper .testimonial-card::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 9rem;
  color: rgba(45, 108, 223, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.nirvaz-billing-wrapper .rating-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
  color: #ffb703;
}

.nirvaz-billing-wrapper .testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 28px;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 5;
}

.nirvaz-billing-wrapper .testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nirvaz-billing-wrapper .user-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nirvaz-billing-wrapper .avatar-blue { background-color: var(--color-primary); }
.nirvaz-billing-wrapper .avatar-orange { background-color: var(--color-accent); }
.nirvaz-billing-wrapper .avatar-navy { background-color: var(--color-navy); }

.nirvaz-billing-wrapper .user-info h5 {
  margin-bottom: 2px;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .user-info span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTION 9 - FAQ SECTION
   ========================================================================== */
.nirvaz-billing-wrapper .faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.nirvaz-billing-wrapper .faq-item {
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: var(--border-light);
  background: var(--color-bg-white);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .faq-item.faq-open {
  border-color: rgba(45, 108, 223, 0.4);
  box-shadow: var(--shadow-md);
}

.nirvaz-billing-wrapper .faq-header {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
}

.nirvaz-billing-wrapper .faq-question {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .faq-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
  flex-shrink: 0;
}

.nirvaz-billing-wrapper .faq-item.faq-open .faq-icon-toggle {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  color: white;
}

.nirvaz-billing-wrapper .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease;
}

.nirvaz-billing-wrapper .faq-content {
  padding: 0 32px 24px 32px;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.nirvaz-billing-wrapper .faq-item.faq-open .faq-content {
  border-top: 1px solid rgba(29, 53, 87, 0.05);
}

/* ==========================================================================
   SECTION 10 - FINAL CTA SECTION (Premium Dark Card)
   ========================================================================== */
.nirvaz-billing-wrapper .final-cta {
  background: var(--color-bg-white);
  padding: 80px 20px;
}

.nirvaz-billing-wrapper .final-cta-card {
  padding: 70px 40px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 10% 20%, #152745 0%, var(--color-bg-dark) 90%);
  border: var(--border-dark);
  text-align: center;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg), var(--glow-blue);
  overflow: hidden;
}

.nirvaz-billing-wrapper .final-cta-title {
  font-size: 2.85rem;
  margin-bottom: 15px;
  color: white;
}

.nirvaz-billing-wrapper .final-cta-sub {
  font-size: 1.2rem;
  color: var(--text-body-dark);
  max-width: 650px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.nirvaz-billing-wrapper .final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .nirvaz-billing-wrapper .final-cta-card {
    padding: 50px 20px;
  }
  .nirvaz-billing-wrapper .final-cta-title {
    font-size: 2rem;
  }
  .nirvaz-billing-wrapper .final-cta-buttons {
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
  }
  .nirvaz-billing-wrapper .final-cta-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   LEAD GENERATION MODAL
   ========================================================================== */
.nirvaz-billing-wrapper .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 14, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 16px;
}

.nirvaz-billing-wrapper .modal.active {
  opacity: 1;
  pointer-events: auto;
}

.nirvaz-billing-wrapper .modal-card {
  max-width: 500px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--glow-blue);
  border: var(--border-light);
  background: var(--color-bg-white);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.nirvaz-billing-wrapper .modal.active .modal-card {
  transform: scale(1);
}

.nirvaz-billing-wrapper .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.6rem;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.nirvaz-billing-wrapper .modal-close:hover {
  color: var(--color-accent);
}

.nirvaz-billing-wrapper .modal-title {
  font-size: 1.85rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .modal-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.55;
}

.nirvaz-billing-wrapper .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.nirvaz-billing-wrapper .form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.nirvaz-billing-wrapper .form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background-color: var(--color-bg-light);
  transition: all var(--transition-fast);
  color: var(--text-body);
}

.nirvaz-billing-wrapper .form-input:focus {
  border-color: var(--color-primary);
  background-color: var(--color-bg-white);
  box-shadow: 0 0 0 3px rgba(45, 108, 223, 0.12);
}

.nirvaz-billing-wrapper .form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(45, 108, 223, 0.25);
  margin-top: 10px;
  transition: all var(--transition-fast);
}

.nirvaz-billing-wrapper .form-submit:hover {
  background-color: var(--color-navy);
  box-shadow: 0 6px 18px rgba(29, 53, 87, 0.35);
  transform: translateY(-2px);
}

/* Success Confirmation State */
.nirvaz-billing-wrapper .modal-success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.nirvaz-billing-wrapper .modal-success-state i, 
.nirvaz-billing-wrapper .modal-success-state svg {
  font-size: 4.5rem;
  color: var(--color-success);
  margin-bottom: 24px;
}

.nirvaz-billing-wrapper .modal-success-state h3 {
  color: var(--color-navy);
  font-size: 1.7rem;
}

/* ==========================================================================
   MOBILE STICKY FOOTER CTA
   ========================================================================== */
.nirvaz-billing-wrapper .mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(29, 53, 87, 0.08);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .nirvaz-billing-wrapper .mobile-sticky-cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nirvaz-billing-wrapper .mobile-sticky-cta .btn {
    width: 100%;
    padding: 13px;
  }
}

/* ==========================================================================
   REPLICATED HEADER NAVIGATION - nirvazdigital.com
   ========================================================================== */
.nirvaz-billing-wrapper .site-header {
  position: absolute;
  top: 20px; /* Floating floating card design! */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1250px;
  z-index: 1000;
  background: #ffffff;
  padding: 0 24px; /* Layout height set by 80px wrapper constraint */
  height: 80px; /* Exact replication of header row height */
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.08);
  border-radius: 5px; /* Rounded corners matching Elementor column */
  transition: all var(--transition-normal);
  border: 1px solid rgba(29, 53, 87, 0.04);
  display: flex;
  align-items: center;
}

.nirvaz-billing-wrapper .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nirvaz-billing-wrapper .header-logo img {
  height: 52px; /* Aligned height to match the larger size on nirvazdigital.com */
  width: auto;
  display: block;
}

.nirvaz-billing-wrapper .header-nav-links {
  display: flex;
  list-style: none;
  gap: 0; /* Managed via link padding to match original layout */
  align-items: center;
  margin: 0;
  padding: 0;
}

.nirvaz-billing-wrapper .header-nav-link {
  color: var(--color-primary); /* Electric Blue #2D6CDF to match --e-global-color-primary */
  font-family: 'Inter', sans-serif; /* Inter to match header typography on nirvazdigital.com */
  font-size: 12px; /* Matches 12px header font size */
  font-weight: 600; /* Matches 600 weight */
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 10px 22px; /* Matches padding 0 22px horizontal alignment spacing */
  transition: color var(--transition-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nirvaz-billing-wrapper .header-nav-link:hover,
.nirvaz-billing-wrapper .header-nav-links li.current-menu-item a {
  color: var(--color-accent); /* Orange Accent hover state */
}

@media (min-width: 993px) {
  .nirvaz-billing-wrapper .header-nav,
  .nirvaz-billing-wrapper .header-nav-links {
    display: flex;
    align-items: center;
    height: 100%;
  }
}

.nirvaz-billing-wrapper .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.nirvaz-billing-wrapper .header-cta-btn {
  background-color: var(--color-accent) !important; /* #FF6A3D */
  color: #F1F1F1 !important;
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.3px !important;
  border-radius: 50px !important;
  padding: 15px 32px !important;
  box-shadow: 0 4px 12px rgba(255, 106, 61, 0.15) !important;
  transition: all var(--transition-fast) !important;
  border: none !important;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.nirvaz-billing-wrapper .header-cta-btn:hover {
  background-color: transparent !important;
  background-image: linear-gradient(180deg, #FD7E14 0%, #FB3F3F 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(253, 126, 20, 0.35) !important;
}

.nirvaz-billing-wrapper .header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.nirvaz-billing-wrapper .header-hamburger span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-accent); /* Orange accent hamburger color */
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.nirvaz-billing-wrapper .mobile-nav-header {
  display: none;
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .site-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 14px 20px;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.05);
    border: none;
    border-bottom: 1px solid rgba(29, 53, 87, 0.04);
  }

  .nirvaz-billing-wrapper .header-hamburger {
    display: flex;
  }
  
  .nirvaz-billing-wrapper .header-nav {
    position: fixed;
    top: 0;
    left: -110%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: #f7f7f7;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
    transition: left 0.6s cubic-bezier(.6,.1,.68,.53);
    z-index: 999;
    overflow-y: auto;
  }
  
  .nirvaz-billing-wrapper .header-nav.active {
    left: 0;
  }
  
  .nirvaz-billing-wrapper .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f7f7f7;
  }

  .nirvaz-billing-wrapper .mobile-nav-logo img {
    height: 40px;
    width: auto;
  }

  .nirvaz-billing-wrapper .header-close-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: var(--color-accent); /* #FF6A3D */
    color: white;
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    line-height: 1;
    transition: all var(--transition-fast);
  }

  .nirvaz-billing-wrapper .header-close-btn:hover {
    background-color: var(--color-navy);
    transform: rotate(90deg);
  }
  
  .nirvaz-billing-wrapper .header-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 20px 0;
  }

  .nirvaz-billing-wrapper .header-nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nirvaz-billing-wrapper .header-nav-link {
    display: block;
    width: 100%;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
  }

  .nirvaz-billing-wrapper .header-nav-link:hover {
    color: var(--color-accent);
    background-color: rgba(0, 0, 0, 0.02);
  }
  
  .nirvaz-billing-wrapper .header-cta-btn {
    display: none;
  }
  
  .nirvaz-billing-wrapper .mobile-cta-only {
    display: block !important;
    width: 100%;
    padding: 20px 30px;
    border-bottom: none !important;
  }
  
  .nirvaz-billing-wrapper .mobile-cta-only .header-cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .nirvaz-billing-wrapper .header-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nirvaz-billing-wrapper .header-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .nirvaz-billing-wrapper .header-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Spacing adjustment for mobile/tablet */
  .nirvaz-billing-wrapper .hero {
    padding-top: 110px;
  }
}

@media (min-width: 993px) {
  .nirvaz-billing-wrapper .mobile-cta-only {
    display: none !important;
  }
}

/* Adjust page spacing for fixed header */
.nirvaz-billing-wrapper .hero {
  padding-top: 145px;
}

/* ==========================================================================
   REPLICATED FOOTER - nirvazdigital.com
   ========================================================================== */
.nirvaz-billing-wrapper .site-footer {
  background-color: var(--color-navy); /* #1D3557 */
  color: #94a3b8;
  padding: 80px 0 35px 0;
  position: relative;
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background overlay image */
.nirvaz-billing-wrapper .site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://nirvazdigital.com/wp-content/uploads/2025/12/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  mix-blend-mode: darken;
  pointer-events: none;
  z-index: 1;
}

.nirvaz-billing-wrapper .site-footer > * {
  position: relative;
  z-index: 2; /* Place content above background-overlay */
}

.nirvaz-billing-wrapper .footer-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Newsletter row */
.nirvaz-billing-wrapper .footer-newsletter-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
  margin-bottom: 50px;
  width: 100%;
}

.nirvaz-billing-wrapper .newsletter-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.nirvaz-billing-wrapper .newsletter-content {
  flex: 1;
}

.nirvaz-billing-wrapper .newsletter-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  border-left: 3px solid var(--color-accent);
  padding-left: 10px;
  line-height: 1.2;
}

.nirvaz-billing-wrapper .newsletter-desc {
  font-size: 0.95rem;
  color: #8898aa;
  line-height: 1.6;
  max-width: 580px;
  margin: 0;
}

.nirvaz-billing-wrapper .newsletter-form-wrapper {
  flex: 1;
  width: 100%;
  max-width: 500px;
}

.nirvaz-billing-wrapper .newsletter-input-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

.nirvaz-billing-wrapper .newsletter-input {
  flex: 1;
  background-color: #F6F7FA;
  color: #141414;
  font-size: 15px;
  border: 1px solid #EAECF1;
  border-radius: 6px;
  padding: 15px 24px;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.nirvaz-billing-wrapper .newsletter-input:focus {
  background-color: #FFFFFF;
  border-color: #D6D8E0;
}

.nirvaz-billing-wrapper .newsletter-btn {
  background-color: #3970FF;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 15px 36px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(57, 112, 255, 0.15);
}

.nirvaz-billing-wrapper .newsletter-btn:hover {
  background-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(29, 53, 87, 0.4);
}

/* Footer columns grid */
.nirvaz-billing-wrapper .footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: 40px;
  margin-bottom: 50px;
}

.nirvaz-billing-wrapper .footer-col-brand {
  display: flex;
  flex-direction: column;
}

.nirvaz-billing-wrapper .footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.nirvaz-billing-wrapper .footer-description {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #8898aa;
  margin-bottom: 24px;
}

.nirvaz-billing-wrapper .footer-social-links {
  display: flex;
  gap: 12px;
}

.nirvaz-billing-wrapper .footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background-color: var(--color-accent); /* #FF6A3D */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nirvaz-billing-wrapper .footer-social-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: #ffffff !important;
  display: block;
  transition: fill var(--transition-fast);
}

.nirvaz-billing-wrapper .footer-social-icon:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255, 106, 61, 0.3);
}

.nirvaz-billing-wrapper .footer-social-icon:hover svg {
  fill: var(--color-accent) !important;
}

.nirvaz-billing-wrapper .footer-col-title {
  color: white;
  margin-bottom: 25px;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-left: 3px solid var(--color-accent);
  padding-left: 10px;
  line-height: 1.25;
}

.nirvaz-billing-wrapper .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nirvaz-billing-wrapper .footer-links-list li {
  margin-bottom: 12px;
}

.nirvaz-billing-wrapper .footer-links-list a {
  font-size: 0.92rem;
  color: #8898aa;
  transition: all var(--transition-fast);
  font-weight: 500;
  text-decoration: none;
}

.nirvaz-billing-wrapper .footer-links-list a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.nirvaz-billing-wrapper .footer-col-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nirvaz-billing-wrapper .hours-text {
  font-size: 0.92rem;
  color: #e2e8f0;
  margin-bottom: 12px;
  font-weight: 600;
}

.nirvaz-billing-wrapper .hours-text i {
  color: var(--color-accent);
  margin-right: 6px;
}

.nirvaz-billing-wrapper .hours-subtext {
  font-size: 0.85rem;
  color: #8898aa;
  margin-bottom: 24px;
  line-height: 1.5;
}

.nirvaz-billing-wrapper .appointment-btn {
  background-image: linear-gradient(90deg, #FD7E14 0%, #FB3F3F 100%) !important;
  color: #F1F1F1 !important;
  font-family: 'Nunito Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.3px !important;
  border-radius: 50px !important;
  padding: 17px 30px !important;
  box-shadow: 0 4px 12px rgba(253, 126, 20, 0.2) !important;
  transition: all var(--transition-fast) !important;
  border: none !important;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.nirvaz-billing-wrapper .appointment-btn:hover {
  background-image: linear-gradient(180deg, #FD7E14 0%, #FB3F3F 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(253, 126, 20, 0.4) !important;
}

.nirvaz-billing-wrapper .footer-bottom-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  color: #718096;
}

@media (max-width: 992px) {
  .nirvaz-billing-wrapper .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .nirvaz-billing-wrapper .newsletter-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nirvaz-billing-wrapper .newsletter-form-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .nirvaz-billing-wrapper .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .nirvaz-billing-wrapper .newsletter-input-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .nirvaz-billing-wrapper .newsletter-btn {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .nirvaz-billing-wrapper .overview-card {
    padding: 30px 20px;
  }
  
  .nirvaz-billing-wrapper .testimonial-card {
    padding: 30px 20px;
  }
}

