/* ============================================================
   PayWithBro - Modern CSS Override
   Version: 2.0
   Loaded AFTER style.css to modernize the marketing website UI
   ============================================================ */

/* ------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ------------------------------------------------------------------ */
:root {
  /* Brand Colors */
  --sb-primary: #1a73e8;
  --sb-primary-rgb: 26, 115, 232;
  --sb-secondary: #6c5ce7;
  --sb-secondary-rgb: 108, 92, 231;
  --sb-accent: #00b894;
  --sb-accent-rgb: 0, 184, 148;
  --sb-dark: #0c1427;
  --sb-dark-rgb: 12, 20, 39;
  --sb-light-bg: #f8faff;
  --sb-white: #ffffff;
  --sb-text: #333344;
  --sb-text-muted: #6b7280;
  --sb-border: rgba(26, 115, 232, 0.08);

  /* Gradients */
  --sb-gradient: linear-gradient(135deg, #1a73e8, #6c5ce7);
  --sb-gradient-reverse: linear-gradient(135deg, #6c5ce7, #1a73e8);
  --sb-gradient-accent: linear-gradient(135deg, #00b894, #1a73e8);
  --sb-gradient-dark: linear-gradient(160deg, #0c1427, #1a1a3e);
  --sb-gradient-shift: linear-gradient(270deg, #1a73e8, #6c5ce7, #00b894, #1a73e8);

  /* Shadows */
  --sb-shadow-sm: 0 2px 8px rgba(12, 20, 39, 0.06);
  --sb-shadow-md: 0 4px 20px rgba(12, 20, 39, 0.08);
  --sb-shadow-lg: 0 8px 40px rgba(12, 20, 39, 0.12);
  --sb-shadow-xl: 0 16px 60px rgba(12, 20, 39, 0.16);
  --sb-shadow-primary: 0 8px 30px rgba(26, 115, 232, 0.3);
  --sb-shadow-accent: 0 8px 30px rgba(0, 184, 148, 0.25);

  /* Typography */
  --sb-font-heading: 'Poppins', 'Montserrat', sans-serif;
  --sb-font-body: 'Nunito', 'Open Sans', sans-serif;
  --sb-fs-hero: clamp(2.4rem, 5vw, 3.6rem);
  --sb-fs-h2: clamp(1.8rem, 3vw, 2.4rem);
  --sb-fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --sb-fs-body: 1rem;
  --sb-fs-small: 0.875rem;
  --sb-lh-body: 1.75;

  /* Spacing */
  --sb-section-padding: 80px 0;
  --sb-card-radius: 16px;
  --sb-btn-radius: 50px;
  --sb-radius-sm: 8px;
  --sb-radius-md: 12px;

  /* Transitions */
  --sb-transition: 0.3s ease;
  --sb-transition-slow: 0.5s ease;
  --sb-transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ------------------------------------------------------------------
   2. Global Resets & Enhancements
   ------------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--sb-primary);
  color: var(--sb-white);
}

::-moz-selection {
  background: var(--sb-primary);
  color: var(--sb-white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sb-light-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--sb-primary), var(--sb-secondary));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sb-secondary);
}

body {
  font-family: var(--sb-font-body);
  color: var(--sb-text);
  line-height: var(--sb-lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  transition: color var(--sb-transition);
}

img {
  transition:
    transform var(--sb-transition),
    opacity var(--sb-transition);
}

/* Focus States */
*:focus-visible {
  outline: 2px solid var(--sb-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Page Transition */
.page-enter {
  animation: fadeSlideIn 0.5s ease forwards;
}

section {
  position: relative;
}

/* ------------------------------------------------------------------
   3. Keyframe Animations
   ------------------------------------------------------------------ */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.4);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(26, 115, 232, 0);
  }
}

@keyframes pulseAccent {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(0, 184, 148, 0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes particleFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(80px, -60px) scale(1.2);
    opacity: 0.3;
  }
  50% {
    transform: translate(40px, -100px) scale(0.8);
    opacity: 0.5;
  }
  75% {
    transform: translate(-30px, -50px) scale(1.1);
    opacity: 0.2;
  }
}

@keyframes particleFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(-60px, -80px) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-100px, -30px) scale(1.3);
    opacity: 0.3;
  }
  75% {
    transform: translate(-40px, -90px) scale(0.9);
    opacity: 0.5;
  }
}

@keyframes particleFloat3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(60px, -70px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(26, 115, 232, 0.15);
  }
  50% {
    border-color: rgba(108, 92, 231, 0.25);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes imgReveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* ------------------------------------------------------------------
   4. Header / Navbar
   ------------------------------------------------------------------ */
.header.fixed-top,
#header.fixed-top {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(26, 115, 232, 0.06);
  box-shadow: none;
  transition: all var(--sb-transition);
  padding: 10px 0;
}

.header.fixed-top.scrolled,
#header.fixed-top.scrolled,
.header.fixed-top.header-scrolled,
#header.fixed-top.header-scrolled {
  box-shadow: 0 2px 24px rgba(12, 20, 39, 0.08);
  padding: 6px 0;
}

.header .navbar,
#header .navbar {
  padding: 0;
}

.header .navbar-brand,
#header .navbar-brand {
  font-family: var(--sb-font-heading);
  font-weight: 700;
}

.header .nav-link,
#header .nav-link,
.navbar .nav-link {
  font-family: var(--sb-font-heading);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--sb-dark) !important;
  padding: 8px 18px !important;
  margin: 0 2px;
  border-radius: var(--sb-radius-sm);
  transition: all var(--sb-transition);
  position: relative;
  letter-spacing: 0.02em;
}

.header .nav-link:hover,
#header .nav-link:hover,
.navbar .nav-link:hover {
  color: var(--sb-primary) !important;
  background: rgba(26, 115, 232, 0.06);
}

.header .nav-link.active,
#header .nav-link.active,
.navbar .nav-link.active {
  color: var(--sb-primary) !important;
}

.header .nav-link.active::after,
#header .nav-link.active::after,
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--sb-gradient);
  border-radius: 3px;
}

/* Login / Get Started button in Navbar */
.header .getstarted,
#header .getstarted,
.navbar .getstarted {
  background: var(--sb-gradient) !important;
  color: var(--sb-white) !important;
  border: none !important;
  padding: 10px 28px !important;
  border-radius: var(--sb-btn-radius) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--sb-transition);
  box-shadow: var(--sb-shadow-primary);
  position: relative;
  overflow: hidden;
}

.header .getstarted::before,
#header .getstarted::before,
.navbar .getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.header .getstarted:hover::before,
#header .getstarted:hover::before,
.navbar .getstarted:hover::before {
  left: 100%;
}

.header .getstarted:hover,
#header .getstarted:hover,
.navbar .getstarted:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 115, 232, 0.4);
}

/* ------------------------------------------------------------------
   5. Hero Section
   ------------------------------------------------------------------ */
#hero,
#hero .hero,
section.hero {
  background: var(--sb-light-bg);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

#hero::before,
section.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after,
section.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

#hero h1,
#hero .hero h1,
section.hero h1 {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-hero);
  font-weight: 800;
  line-height: 1.2;
  color: var(--sb-dark);
  margin-bottom: 1.25rem;
}

#hero h1 span,
section.hero h1 span {
  background: var(--sb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2,
#hero .hero h2,
section.hero h2 {
  font-family: var(--sb-font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--sb-text-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

#hero p,
section.hero p {
  font-size: 1.1rem;
  color: var(--sb-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Hero CTA Button */
.btn-get-started,
#hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sb-gradient) !important;
  color: var(--sb-white) !important;
  border: none !important;
  padding: 14px 36px !important;
  border-radius: var(--sb-btn-radius) !important;
  font-family: var(--sb-font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: all var(--sb-transition);
  box-shadow: var(--sb-shadow-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sb-gradient-reverse);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--sb-transition);
}

.btn-get-started:hover::before {
  opacity: 1;
}

.btn-get-started:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.45);
  color: var(--sb-white) !important;
}

.btn-get-started:active {
  transform: translateY(-1px) scale(1.01);
}

/* Hero Image */
#hero img,
section.hero img,
.hero .hero-img img {
  animation: floatSlow 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(12, 20, 39, 0.1));
  max-width: 100%;
}

/* ------------------------------------------------------------------
   6. Section Headers
   ------------------------------------------------------------------ */
.section-header {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-header h5,
.section-header .subtitle {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--sb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: inline-block;
}

.section-header h2 {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-h2);
  font-weight: 700;
  color: var(--sb-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--sb-gradient);
  border-radius: 4px;
  margin: 16px auto 0;
}

.section-header p {
  color: var(--sb-text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ------------------------------------------------------------------
   7. Service Cards
   ------------------------------------------------------------------ */
.services .service-box,
.service-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 115, 232, 0.08);
  border-radius: var(--sb-card-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--sb-transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sb-shadow-sm);
}

.services .service-box::before,
.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-gradient);
  transform: scaleX(0);
  transition: transform var(--sb-transition);
}

.services .service-box:hover::before,
.service-box:hover::before {
  transform: scaleX(1);
}

.services .service-box:hover,
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--sb-shadow-lg);
  border-color: rgba(26, 115, 232, 0.12);
}

.services .service-box img,
.service-box img,
.services .service-box .icon,
.service-box .icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(108, 92, 231, 0.08));
  transition: all var(--sb-transition);
}

.services .service-box:hover img,
.service-box:hover img,
.services .service-box:hover .icon,
.service-box:hover .icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.14), rgba(108, 92, 231, 0.14));
}

.services .service-box h3,
.service-box h3 {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-h3);
  font-weight: 600;
  color: var(--sb-dark);
  margin-bottom: 12px;
  transition: color var(--sb-transition);
}

.services .service-box:hover h3,
.service-box:hover h3 {
  color: var(--sb-primary);
}

.services .service-box p,
.service-box p {
  color: var(--sb-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ------------------------------------------------------------------
   8. About / Feature Sections
   ------------------------------------------------------------------ */
.about .content h3,
.about h3,
.features h3 {
  font-family: var(--sb-font-heading);
  font-weight: 700;
  color: var(--sb-dark);
  font-size: var(--sb-fs-h3);
  margin-bottom: 8px;
}

.about .content h2,
.about h2,
.features h2 {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-h2);
  font-weight: 700;
  color: var(--sb-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about .content p,
.about p,
.features p {
  color: var(--sb-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Modern list with CSS check icons */
.about .content .list li,
.about .list li,
.features .list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--sb-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about .content .list li::before,
.about .list li::before,
.features .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: var(--sb-gradient);
  border-radius: 50%;
}

.about .content .list li::after,
.about .list li::after,
.features .list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--sb-white);
  border-bottom: 2px solid var(--sb-white);
  transform: rotate(-45deg);
}

/* Hide old icon images in list items */
.about .content .list li img,
.about .list li img,
.features .list li img {
  display: none;
}

/* Read More / Learn More Button */
.btn-read-more,
.about .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  color: var(--sb-primary) !important;
  border: 2px solid var(--sb-primary) !important;
  padding: 10px 28px !important;
  border-radius: var(--sb-btn-radius) !important;
  font-family: var(--sb-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--sb-transition);
  letter-spacing: 0.02em;
}

.btn-read-more:hover,
.about .btn-read-more:hover {
  background: var(--sb-gradient) !important;
  color: var(--sb-white) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: var(--sb-shadow-primary);
}

/* About section images */
.about img,
.features img {
  border-radius: var(--sb-card-radius);
  transition: all var(--sb-transition-slow);
  box-shadow: var(--sb-shadow-md);
}

.about img:hover,
.features img:hover {
  transform: scale(1.03) rotate(0.5deg);
  box-shadow: var(--sb-shadow-xl);
}

/* ------------------------------------------------------------------
   9. Call to Action Section
   ------------------------------------------------------------------ */
.call-action,
section.call-action,
.cta-section {
  position: relative;
  overflow: hidden;
}

.call-action .overlay,
.cta-section .overlay {
  background: var(--sb-gradient) !important;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Particle effects (CSS only) */
.call-action .overlay::before,
.cta-section .overlay::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: particleFloat1 8s ease-in-out infinite;
  pointer-events: none;
}

.call-action .overlay::after,
.cta-section .overlay::after {
  content: '';
  position: absolute;
  bottom: 25%;
  right: 15%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: particleFloat2 10s ease-in-out infinite;
  pointer-events: none;
}

/* Extra particle via box-shadow trick */
.call-action .container::before,
.cta-section .container::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 30%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    80px 40px 0 rgba(255, 255, 255, 0.08),
    -120px 80px 0 rgba(255, 255, 255, 0.06),
    200px -30px 0 rgba(255, 255, 255, 0.1),
    -60px -50px 0 rgba(255, 255, 255, 0.07);
  animation: particleFloat3 12s ease-in-out infinite;
  pointer-events: none;
}

.call-action h2,
.call-action .overlay h2,
.cta-section h2 {
  font-family: var(--sb-font-heading);
  font-weight: 700;
  color: var(--sb-white) !important;
  font-size: var(--sb-fs-h2);
  margin-bottom: 16px;
}

.call-action p,
.call-action .overlay p,
.cta-section p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* CTA Button */
.cmn-btn,
.call-action .cmn-btn,
.cta-section .cmn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sb-white) !important;
  color: var(--sb-primary) !important;
  border: none !important;
  padding: 14px 36px !important;
  border-radius: var(--sb-btn-radius) !important;
  font-family: var(--sb-font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--sb-transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cmn-btn:hover,
.call-action .cmn-btn:hover,
.cta-section .cmn-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--sb-secondary) !important;
}

/* ------------------------------------------------------------------
   10. Plan Boxes / Finance Section
   ------------------------------------------------------------------ */
.finance .plan-box,
.plan-box {
  background: var(--sb-white);
  border: 1px solid var(--sb-border);
  border-radius: var(--sb-card-radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--sb-transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sb-shadow-sm);
}

.finance .plan-box::before,
.plan-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--sb-card-radius);
  padding: 2px;
  background: var(--sb-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--sb-transition);
  pointer-events: none;
}

.finance .plan-box:hover::before,
.plan-box:hover::before {
  opacity: 1;
}

.finance .plan-box:hover,
.plan-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--sb-shadow-lg);
}

.finance .plan-box h3,
.plan-box h3 {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-h3);
  font-weight: 600;
  color: var(--sb-dark);
  margin-bottom: 12px;
}

.finance .plan-box p,
.plan-box p {
  color: var(--sb-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.finance .plan-box img,
.plan-box img {
  margin-bottom: 20px;
  transition: transform var(--sb-transition);
}

.finance .plan-box:hover img,
.plan-box:hover img {
  transform: scale(1.08);
}

/* ------------------------------------------------------------------
   11. Blog / Post Cards
   ------------------------------------------------------------------ */
.post-box {
  background: var(--sb-white);
  border-radius: var(--sb-card-radius);
  overflow: hidden;
  box-shadow: var(--sb-shadow-sm);
  border: 1px solid var(--sb-border);
  transition: all var(--sb-transition);
}

.post-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--sb-shadow-lg);
}

/* Image container with zoom */
.post-box .post-img,
.post-box > a,
.post-box .img-wrap {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: var(--sb-card-radius) var(--sb-card-radius) 0 0;
}

.post-box .post-img img,
.post-box > a img,
.post-box img:first-child {
  width: 100%;
  transition: transform var(--sb-transition-slow);
}

.post-box:hover .post-img img,
.post-box:hover > a img,
.post-box:hover img:first-child {
  transform: scale(1.08);
}

/* Date badge */
.post-box .post-date,
.post-box .date,
.post-box span.date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sb-gradient);
  color: var(--sb-white);
  padding: 6px 16px;
  border-radius: var(--sb-btn-radius);
  font-size: var(--sb-fs-small);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.post-box h3,
.post-box h4 {
  font-family: var(--sb-font-heading);
  font-weight: 600;
  color: var(--sb-dark);
  margin-bottom: 10px;
  transition: color var(--sb-transition);
  line-height: 1.4;
}

.post-box:hover h3,
.post-box:hover h4 {
  color: var(--sb-primary);
}

.post-box p {
  color: var(--sb-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   12. FAQ Accordion
   ------------------------------------------------------------------ */
.faq .accordion-item,
.accordion-item {
  border: none !important;
  border-radius: var(--sb-radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--sb-shadow-sm);
  transition: all var(--sb-transition);
  background: var(--sb-white);
}

.faq .accordion-item:hover,
.accordion-item:hover {
  box-shadow: var(--sb-shadow-md);
}

.faq .accordion-button,
.accordion-button {
  font-family: var(--sb-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sb-dark) !important;
  padding: 18px 24px;
  border: none !important;
  background: var(--sb-white) !important;
  box-shadow: none !important;
  transition: all var(--sb-transition);
}

.faq .accordion-button:not(.collapsed),
.accordion-button:not(.collapsed) {
  color: var(--sb-primary) !important;
  background: rgba(26, 115, 232, 0.04) !important;
}

/* Custom chevron */
.faq .accordion-button::after,
.accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: none !important;
  content: '';
  border-right: 2px solid var(--sb-primary);
  border-bottom: 2px solid var(--sb-primary);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--sb-transition);
  flex-shrink: 0;
}

.faq .accordion-button:not(.collapsed)::after,
.accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg) translateY(-3px);
}

.faq .accordion-body,
.accordion-body {
  padding: 0 24px 20px;
  color: var(--sb-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq .accordion-collapse,
.accordion-collapse {
  transition: height 0.35s ease;
}

/* ------------------------------------------------------------------
   13. Footer
   ------------------------------------------------------------------ */
.footer,
footer,
#footer,
footer.footer {
  background: var(--sb-gradient-dark) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  position: relative;
  overflow: hidden;
  padding: 0 0 30px 0;
}

.footer::before,
#footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-top,
#footer .footer-top {
  padding: 60px 0 30px;
  border-bottom: none !important;
  border-top: none !important;
  background: transparent !important;
}

.footer h3,
.footer h4,
.footer .footer-heading,
#footer h3,
#footer h4 {
  font-family: var(--sb-font-heading);
  font-weight: 600;
  color: var(--sb-white) !important;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h3::after,
.footer h4::after,
#footer h3::after,
#footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--sb-gradient);
  border-radius: 3px;
}

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

.footer .footer-links a,
#footer .footer-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.925rem;
  transition: all var(--sb-transition);
  padding-left: 0;
  position: relative;
  display: inline-block;
}

.footer .footer-links a::before,
#footer .footer-links a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sb-accent);
  transition: width var(--sb-transition);
}

.footer .footer-links a:hover,
#footer .footer-links a:hover {
  color: var(--sb-accent) !important;
  padding-left: 6px;
}

.footer .footer-links a:hover::before,
#footer .footer-links a:hover::before {
  width: 100%;
}

/* Social Links */
.footer .social-links a,
#footer .social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
  margin-right: 8px;
  transition: all var(--sb-transition);
}

.footer .social-links a:hover,
#footer .social-links a:hover {
  background: var(--sb-gradient);
  border-color: transparent;
  color: var(--sb-white) !important;
  transform: translateY(-3px);
  box-shadow: var(--sb-shadow-primary);
}

/* Footer description / about */
.footer p,
#footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.925rem;
  line-height: 1.75;
}

/* Copyright section */
.footer .footer-bottom,
.footer .copyright,
#footer .footer-bottom,
#footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 24px 0;
  margin-top: 20px;
  text-align: center;
}

.footer .footer-bottom p,
.footer .copyright p,
#footer .footer-bottom p,
#footer .copyright p {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--sb-fs-small);
  margin: 0;
}

.footer .footer-bottom a,
.footer .copyright a,
#footer .footer-bottom a,
#footer .copyright a {
  color: var(--sb-accent) !important;
  transition: color var(--sb-transition);
}

.footer .footer-bottom a:hover,
.footer .copyright a:hover,
#footer .footer-bottom a:hover,
#footer .copyright a:hover {
  color: var(--sb-white) !important;
}

/* Footer newsletter / contact form if present */
.footer input[type='email'],
#footer input[type='email'] {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sb-btn-radius);
  color: var(--sb-white);
  padding: 10px 20px;
  font-size: 0.9rem;
  transition: all var(--sb-transition);
}

.footer input[type='email']:focus,
#footer input[type='email']:focus {
  border-color: var(--sb-primary);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

.footer input[type='email']::placeholder,
#footer input[type='email']::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* ------------------------------------------------------------------
   14. Back to Top Button
   ------------------------------------------------------------------ */
.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  background: var(--sb-gradient) !important;
  color: var(--sb-white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sb-shadow-primary);
  transition: all var(--sb-transition);
  border: none !important;
  z-index: 996;
  animation: pulse 2s infinite;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 36px rgba(26, 115, 232, 0.5);
  animation: none;
}

.back-to-top i,
.back-to-top svg {
  line-height: 0;
}

/* ------------------------------------------------------------------
   15. Breadcrumbs (Inner Pages)
   ------------------------------------------------------------------ */
.breadcrumbs {
  background: var(--sb-gradient) !important;
  padding: 100px 0 40px !important;
  position: relative;
  overflow: hidden;
}

.breadcrumbs::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.breadcrumbs h2 {
  font-family: var(--sb-font-heading);
  font-weight: 700;
  color: var(--sb-white) !important;
  margin-bottom: 10px;
}

.breadcrumbs ol,
.breadcrumbs ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs ol li a,
.breadcrumbs ul li a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: color var(--sb-transition);
}

.breadcrumbs ol li a:hover,
.breadcrumbs ul li a:hover {
  color: var(--sb-white) !important;
}

.breadcrumbs ol li.active,
.breadcrumbs ul li.active,
.breadcrumbs ol li:last-child,
.breadcrumbs ul li:last-child {
  color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------------------------------------
   16. General Button Enhancements
   ------------------------------------------------------------------ */
.btn-primary,
.btn {
  font-family: var(--sb-font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--sb-transition);
}

.btn-primary {
  background: var(--sb-gradient) !important;
  border: none !important;
  border-radius: var(--sb-btn-radius);
  box-shadow: var(--sb-shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 115, 232, 0.4);
}

.btn-outline-primary {
  color: var(--sb-primary) !important;
  border-color: var(--sb-primary) !important;
  border-radius: var(--sb-btn-radius);
}

.btn-outline-primary:hover {
  background: var(--sb-gradient) !important;
  border-color: transparent !important;
  color: var(--sb-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--sb-shadow-primary);
}

/* ------------------------------------------------------------------
   17. Form Inputs (General)
   ------------------------------------------------------------------ */
.form-control,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
textarea,
select {
  border: 1px solid rgba(26, 115, 232, 0.15);
  border-radius: var(--sb-radius-md);
  padding: 12px 18px;
  font-family: var(--sb-font-body);
  font-size: 0.95rem;
  color: var(--sb-text);
  background: var(--sb-white);
  transition: all var(--sb-transition);
}

.form-control:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='tel']:focus,
textarea:focus,
select:focus {
  border-color: var(--sb-primary);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
  outline: none;
}

/* ------------------------------------------------------------------
   18. Lazy Load Image Animation
   ------------------------------------------------------------------ */
img[loading='lazy'],
img.lazyload {
  animation: imgReveal 0.6s ease forwards;
}

/* ------------------------------------------------------------------
   19. Utility / Helper Classes
   ------------------------------------------------------------------ */
.gradient-text {
  background: var(--sb-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 115, 232, 0.08);
  border-radius: var(--sb-card-radius);
}

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

/* ------------------------------------------------------------------
   20. Responsive Overrides
   ------------------------------------------------------------------ */

/* Large tablets and below */
@media (max-width: 991.98px) {
  :root {
    --sb-section-padding: 60px 0;
  }

  #hero,
  #hero .hero,
  section.hero {
    min-height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }

  #hero h2,
  #hero .hero h2,
  #hero p,
  section.hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #hero img,
  section.hero img,
  .hero .hero-img img {
    margin-top: 40px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .btn-get-started {
    margin: 0 auto;
  }

  /* Mobile Nav */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--sb-card-radius);
    padding: 20px;
    margin-top: 10px;
    box-shadow: var(--sb-shadow-lg);
    border: 1px solid rgba(26, 115, 232, 0.06);
  }

  .header .nav-link,
  #header .nav-link,
  .navbar .nav-link {
    padding: 12px 18px !important;
    margin: 2px 0;
    border-radius: var(--sb-radius-sm);
  }

  .header .nav-link.active::after,
  #header .nav-link.active::after,
  .navbar .nav-link.active::after {
    display: none;
  }

  .header .nav-link.active,
  #header .nav-link.active,
  .navbar .nav-link.active {
    background: rgba(26, 115, 232, 0.06);
  }

  .header .getstarted,
  #header .getstarted,
  .navbar .getstarted {
    display: block;
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }

  /* Mobile hamburger */
  .navbar-toggler {
    border: none !important;
    padding: 8px;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
  }

  .section-header h2::after {
    margin: 14px auto 0;
  }

  /* Stack cards */
  .services .service-box,
  .service-box,
  .finance .plan-box,
  .plan-box,
  .post-box {
    margin-bottom: 24px;
  }

  .call-action .overlay,
  .cta-section .overlay {
    padding: 60px 0;
    text-align: center;
  }

  .breadcrumbs {
    padding: 80px 0 30px !important;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  :root {
    --sb-card-radius: 12px;
  }

  #hero,
  #hero .hero,
  section.hero {
    padding: 100px 0 50px;
  }

  .section-header {
    padding-bottom: 30px;
  }

  .about img,
  .features img {
    margin-bottom: 30px;
  }

  .footer .footer-top,
  #footer .footer-top {
    padding: 40px 0 20px;
  }

  .footer .col-lg-3,
  .footer .col-md-6,
  #footer .col-lg-3,
  #footer .col-md-6 {
    margin-bottom: 30px;
  }

  .footer h3::after,
  .footer h4::after,
  #footer h3::after,
  #footer h4::after {
    left: 0;
  }
}

/* Mobile phones */
@media (max-width: 575.98px) {
  #hero h1,
  #hero .hero h1,
  section.hero h1 {
    font-size: 2rem;
  }

  .btn-get-started,
  #hero .btn-get-started {
    padding: 12px 28px !important;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .cmn-btn,
  .call-action .cmn-btn {
    padding: 12px 28px !important;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .services .service-box,
  .service-box {
    padding: 28px 20px;
  }

  .faq .accordion-button,
  .accordion-button {
    padding: 14px 18px;
    font-size: 0.925rem;
  }

  .post-box .post-date,
  .post-box .date {
    font-size: 0.8rem;
    padding: 4px 12px;
  }

  .footer .social-links a,
  #footer .social-links a {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
}

/* ------------------------------------------------------------------
   21. Prefers Reduced Motion
   ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  #hero img,
  section.hero img,
  .hero .hero-img img {
    animation: none;
  }

  .back-to-top {
    animation: none;
  }
}

/* ------------------------------------------------------------------
   22. Dark Mode Support (Optional)
   ------------------------------------------------------------------ */
@media (prefers-color-scheme: dark) {
  :root {
    --sb-light-bg: #0e1729;
    --sb-white: #131b2e;
    --sb-text: #d1d5db;
    --sb-text-muted: #9ca3af;
    --sb-border: rgba(26, 115, 232, 0.12);
    --sb-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --sb-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --sb-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  }

  body {
    background: var(--sb-light-bg);
  }

  .header.fixed-top,
  #header.fixed-top {
    background: rgba(14, 23, 41, 0.85) !important;
    border-bottom-color: rgba(26, 115, 232, 0.1);
  }

  .header .nav-link,
  #header .nav-link,
  .navbar .nav-link {
    color: var(--sb-text) !important;
  }

  .services .service-box,
  .service-box,
  .finance .plan-box,
  .plan-box,
  .post-box {
    background: rgba(19, 27, 46, 0.8);
    border-color: rgba(26, 115, 232, 0.1);
  }

  .services .service-box h3,
  .service-box h3,
  .finance .plan-box h3,
  .plan-box h3,
  .post-box h3,
  .post-box h4 {
    color: #e5e7eb;
  }

  .faq .accordion-button,
  .accordion-button {
    background: rgba(19, 27, 46, 0.9) !important;
    color: #e5e7eb !important;
  }

  .faq .accordion-button:not(.collapsed),
  .accordion-button:not(.collapsed) {
    background: rgba(26, 115, 232, 0.1) !important;
  }

  .faq .accordion-item,
  .accordion-item {
    background: rgba(19, 27, 46, 0.8);
  }

  .navbar-collapse {
    background: rgba(14, 23, 41, 0.98);
  }

  .section-header h2,
  .about .content h2,
  .about h2,
  #hero h1,
  section.hero h1 {
    color: #e5e7eb;
  }

  .form-control,
  input[type='text'],
  input[type='email'],
  input[type='password'],
  textarea {
    background: rgba(19, 27, 46, 0.8);
    border-color: rgba(26, 115, 232, 0.15);
    color: #e5e7eb;
  }
}

/* ------------------------------------------------------------------
   FOOTER SPECIFICITY OVERRIDES
   (Original CSS uses deep nesting - need matching specificity)
   ------------------------------------------------------------------ */
.footer .footer-top .footer-info,
#footer .footer-top .footer-info {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer .footer-top .footer-info p,
#footer .footer-top .footer-info p {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 16px;
}

.footer .footer-top .footer-info .logo span,
#footer .footer-top .footer-info .logo span {
  color: var(--sb-white) !important;
}

.footer .footer-top .footer-links h4,
.footer .footer-top .footer-contact h4,
#footer .footer-top .footer-links h4,
#footer .footer-top .footer-contact h4 {
  color: var(--sb-white) !important;
  font-family: var(--sb-font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links ul a,
.footer .footer-top .footer-links ul li a,
#footer .footer-top .footer-links ul a,
#footer .footer-top .footer-links ul li a {
  color: rgba(255, 255, 255, 0.65) !important;
  transition: all var(--sb-transition);
}

.footer .footer-top .footer-links ul a:hover,
.footer .footer-top .footer-links ul li a:hover,
#footer .footer-top .footer-links ul a:hover,
#footer .footer-top .footer-links ul li a:hover {
  color: var(--sb-accent) !important;
  padding-left: 6px;
}

.footer .footer-top .footer-links ul i,
.footer .footer-top .footer-links ul li i,
#footer .footer-top .footer-links ul i,
#footer .footer-top .footer-links ul li i {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.7rem;
}

.footer .footer-top .footer-contact p,
#footer .footer-top .footer-contact p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer .footer-top .footer-contact p a,
#footer .footer-top .footer-contact p a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer .footer-top .footer-contact p a:hover,
#footer .footer-top .footer-contact p a:hover {
  color: var(--sb-accent) !important;
}

.footer .footer-top .footer-contact p strong,
#footer .footer-top .footer-contact p strong {
  color: rgba(255, 255, 255, 0.85) !important;
}

.footer .footer-top .social-links a,
#footer .footer-top .social-links a {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.footer .footer-top .social-links a:hover,
#footer .footer-top .social-links a:hover {
  background: var(--sb-gradient) !important;
  border-color: transparent !important;
  color: var(--sb-white) !important;
  transform: translateY(-3px);
}

.footer .footer-top h4,
#footer .footer-top h4 {
  color: var(--sb-white) !important;
  font-family: var(--sb-font-heading) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
}

.footer .copyright,
#footer .copyright {
  color: rgba(255, 255, 255, 0.5) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
}

.footer .footer-top .footer-info p,
#footer .footer-top .footer-info p {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 14px;
}

.footer .footer-top .footer-contact p,
#footer .footer-top .footer-contact p {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 26px;
}

.footer .footer-top .footer-contact p a,
#footer .footer-top .footer-contact p a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer .footer-top .footer-info .logo span,
#footer .footer-top .footer-info .logo span {
  color: var(--sb-white) !important;
}

.footer .copyright strong span,
#footer .copyright strong span {
  color: var(--sb-accent) !important;
}

/* Service page overrides for .single-box and .account-feature */
.account-feature .single-box,
.single-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 115, 232, 0.08);
  border-radius: var(--sb-card-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--sb-transition);
  box-shadow: var(--sb-shadow-sm);
}

.account-feature .single-box:hover,
.single-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--sb-shadow-lg);
}

.account-feature .single-box h5,
.single-box h5 {
  color: var(--sb-dark) !important;
  font-family: var(--sb-font-heading);
  font-weight: 600;
}

.account-feature .single-box p,
.single-box p {
  color: var(--sb-text-muted) !important;
}
