/* 
    Sparrowzest - Premium Hosting Theme
    Theme: Futuristic Tech / Deep Navy / Electric Blue & Cyan
*/

:root {
  --primary-color: #FF7419; /* Vibrant Orange */
  --secondary-color: #178C8F; /* Teal */
  --accent-color: #178C8F; 
  --cyan-accent: #178C8F;
  --dark-bg: #000000; /* Black */
  --deep-navy: #262121;
  --card-bg: rgba(26, 42, 53, 0.4);
  --white: #F9F9F9;
  --text-muted: rgba(249, 249, 249, 0.7);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --glow-shadow: 0 0 20px rgba(255, 116, 25, 0.3);
  --purple-glow: 0 0 25px rgba(23, 140, 143, 0.2);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--cyan-accent) !important; }
.text-purple { color: var(--accent-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--cyan-accent) !important; }

/* Navbar */
.navbar {
  padding: 0.8rem 0;
  height: 95px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  z-index: 1000;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 11, 24, 0.95);
  backdrop-filter: blur(15px);
  height: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#navLogo {
  height: 70px !important;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

@media (max-width: 768px) {
  #navLogo {
    height: 55px !important;
  }
}

.navbar.scrolled #navLogo {
  height: 52px !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    overflow: visible;
    position: relative;
    z-index: 1001;
}

.navbar-nav-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar-nav-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
  opacity: 1;
  color: var(--primary-color) !important;
}

.nav-link:hover::after {
    width: 20px;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 116, 25, 0.3);
}

.navbar-toggler-icon {
    filter: invert(0.8) sepia(1) saturate(5) hue-rotate(340deg); /* Make it match the primary color theme but dark */
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(340deg);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(20, 33, 41, 0.1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled .navbar-collapse {
        background: rgba(10, 25, 47, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  color: #fff;
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 210, 255, 0.5);
  color: #fff;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.nav-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.navbar.scrolled .nav-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.navbar.scrolled .nav-btn:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000000;
  padding: 100px 0 180px;
}

/* Animated Gradient Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb--teal {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23, 140, 143, 0.35) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orb-drift-1 12s ease-in-out infinite alternate;
}

.hero-orb--orange {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 116, 25, 0.2) 0%, transparent 70%);
  bottom: -15%;
  left: -5%;
  animation: orb-drift-2 15s ease-in-out infinite alternate;
}

.hero-orb--teal-sm {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(23, 140, 143, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  animation: orb-drift-3 10s ease-in-out infinite alternate;
}

@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.15); }
}

@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -30px) scale(1.1); }
}

@keyframes orb-drift-3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Mesh Grid Background */
.hero-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 116, 25, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 116, 25, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Floating Particles */
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary-color);
  left: var(--x);
  top: var(--y);
  z-index: 3;
  opacity: 0;
  box-shadow: 0 0 8px var(--secondary-color), 0 0 20px rgba(23, 140, 143, 0.3);
  animation: particle-float 8s ease-in-out var(--delay) infinite;
}

.hero-particle:nth-child(odd) {
  background: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color), 0 0 20px rgba(255, 116, 25, 0.3);
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 1; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.8; transform: translateY(-60px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-100px) scale(0.3); }
}

/* Scan Line */
.hero-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF7419;
  z-index: 6;
  opacity: 0.6;
  animation: scanline-move 6s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(23, 140, 143, 0.4);
}

@keyframes scanline-move {
  0% { top: 0; opacity: 0.4; }
  50% { top: 100%; opacity: 0.7; }
  100% { top: 0; opacity: 0.4; }
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

/* Hero Title */
.hero-title {
  font-size: 3.2rem;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title .text-primary {
  color: #FF7419 !important;
  -webkit-text-fill-color: #FF7419;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FF7419;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-stat__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 116, 25, 0.3);
}

/* Hero Visual (Right Side) */
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual__glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 116, 25, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-visual__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: contrast(1.1) brightness(1) drop-shadow(0 20px 50px rgba(255, 116, 25, 0.2));
  animation: hero-img-rotate 10s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  border-radius: 50px;
}

@keyframes hero-img-rotate {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); }
  25% { transform: translateY(-15px) rotateY(5deg) rotateX(2deg); }
  50% { transform: translateY(-5px) rotateY(0deg) rotateX(-2deg); }
  75% { transform: translateY(-15px) rotateY(-5deg) rotateX(2deg); }
}

/* Floating Info Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(20, 33, 41, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 116, 25, 0.2);
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-float-card i {
  color: #FF7419;
  font-size: 1rem;
}

.hero-float-card--top {
  top: 12%;
  right: 0%;
  animation: float-card-1 5s ease-in-out infinite;
}

.hero-float-card--bottom {
  bottom: 15%;
  left: 5%;
  animation: float-card-2 6s ease-in-out infinite;
}

.hero-float-card__dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ecc71;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(-8px); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(10px); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Legacy support - keep hero-circle-bg for other sections */
.hero-circle-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 140, 143, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}

/* Glass Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 116, 25, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Nuke Cards / Service Blocks */
.nuke-card {
  background: rgba(10, 25, 47, 0.6);
  border-radius: 30px;
  padding: 40px;
  border: none;
  transition: var(--transition);
  height: 100%;
  animation: nuke-card-float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.nuke-card:hover {
  background: rgba(16, 33, 65, 0.8);
  box-shadow: 0 0 30px rgba(255, 116, 25, 0.2);
  transform: scale(1.03) perspective(1000px) rotateX(2deg) rotateY(1deg);
  z-index: 10;
}

.nuke-card:hover .card-bg-overlay {
  opacity: 0.15 !important;
  transform: scale(1.05);
  filter: blur(4px);
}

.nuke-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.nuke-card:hover i {
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(255, 116, 25, 0.3);
}

/* Pricing Section */
.pricing-card {
    border-radius: 24px;
    padding: 30px 25px;
    background: var(--deep-navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 116, 25, 0.15);
    z-index: 100;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: rgba(16, 33, 65, 1);
    box-shadow: 0 15px 35px rgba(255, 116, 25, 0.15);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 116, 25, 0.25);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255, 116, 25, 0.02) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Section Padding */
.section-padding {
  padding: 100px 0;
}

.bg-dark-ref {
  background-color: #030812;
}

/* Footer */
.footer {
  background: #000000;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.text-muted { color: rgba(249, 249, 249, 0.6) !important; }

/* Form Labels & Inputs */
.form-label {
    color: var(--white) !important;
    opacity: 0.9;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.form-control {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    transition: var(--transition);
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 116, 25, 0.2);
}

.form-control::placeholder {
    color: rgba(249, 249, 249, 0.3);
}

.domain-search-input::placeholder {
    color: #999 !important;
}

/* Domain Search Glass Card */
.domain-card-glass {
    background-color: rgba(244, 246, 249, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.domain-card-glass:hover {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 20px 40px rgba(255, 116, 25, 0.15), 0 10px 20px rgba(23, 140, 143, 0.08) !important;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* CTA Glass Effect */
.cta-glass {
    background-color: rgba(248, 249, 250, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* List Items in Cards */
.pricing-card ul li {
    color: rgba(249, 249, 249, 0.8) !important;
    font-size: 0.9rem;
}

.nuke-card h4 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: text-shadow 0.3s ease;
}

.nuke-card p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.nuke-card:hover h4, .nuke-card:hover p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.nuke-card:hover p.text-muted {
    color: rgba(255, 255, 255, 1) !important;
}

.nuke-card p {
    color: rgba(249, 249, 249, 0.9);
}

/* Domain Search Wrapper */
.domain-search-wrapper {
    margin-top: -90px;
    margin-bottom: -90px;
}

/* Mobile Responsive Improvements */
@media (max-width: 991px) {
  .domain-search-wrapper {
      margin-top: -50px;
      margin-bottom: -50px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
    min-height: auto;
  }
  
  .hero-title { 
    font-size: 2.2rem; 
    margin-top: 1.5rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .hero-visual__img {
    max-width: 280px;
  }

  .hero-float-card {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .hero-float-card i {
    font-size: 0.8rem;
  }

  .hero-float-card--top {
    top: 5%;
    right: 5%;
  }

  .hero-float-card--bottom {
    bottom: 5%;
    left: 10%;
  }

  .hero-orb--teal { width: 300px; height: 300px; }
  .hero-orb--orange { width: 280px; height: 280px; }
  .hero-orb--teal-sm { width: 200px; height: 200px; }
  
  .navbar-nav-container { 
    margin: 10px 0; 
    border-radius: 15px; 
    background: rgba(20, 33, 41, 0.05);
    padding: 10px;
    border: 1px solid rgba(20, 33, 41, 0.05);
  }
  
  .navbar.scrolled .navbar-nav-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-actions {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  .pricing-card.featured { 
    transform: scale(1); 
    margin: 20px 0; 
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .section-padding {
    padding: 60px 0;
  }

  .stat-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  
  .hero-visual {
    margin-top: 50px;
  }

  .hero-stats {
    justify-content: center;
  }
  
  .service-icon-img {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }

  .display-3 {
    font-size: 2.2rem;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .glass-card {
    padding: 1.5rem !important;
  }

  .section-padding {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .domain-search-wrapper {
      margin-top: -30px;
      margin-bottom: -30px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 12px;
  }
  
  .d-flex.gap-4 {
    flex-direction: column;
    gap: 12px !important;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px !important;
  }

  .hero-stat__divider {
    display: none;
  }

  .navbar-brand img {
    height: 40px !important;
  }

  .glass-card.nuke-card {
    min-height: auto !important;
    padding-bottom: 30px !important;
  }

  .why-choose-main-img {
    max-height: 300px !important;
  }
}

/* Glow Utilities */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 116, 25, 0.5);
}

.glow-border {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 116, 25, 0.2);
}

/* Custom FAQ Accordion */
.custom-faq .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: none;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 116, 25, 0.2);
}

.custom-faq .accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.custom-faq .accordion-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-faq .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}/* Minimalist FAQ Styling */
.custom-faq-minimal .accordion-button::after {
    display: none; /* Hide default Bootstrap arrow */
}

.custom-faq-minimal .accordion-button:not(.collapsed) .faq-icon {
    transform: rotate(45deg); /* Turn + into x */
    background: #FF7419;
    color: #fff;
}

.custom-faq-minimal .faq-icon {
    width: 32px;
    height: 32px;
    background: #D1D3D6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.custom-faq-minimal .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq-minimal .accordion-button:focus {
    box-shadow: none;
}

/* Dark FAQ Styling (Integrated) */
.custom-faq-dark .accordion-button::after {
    display: none;
}

.custom-faq-dark .accordion-button:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--primary-color) !important;
    color: #fff;
}

.custom-faq-dark .accordion-button:focus {
    box-shadow: none;
}
/* Final FAQ Styling (Standalone) */
.custom-faq-final .accordion-button::after {
    display: none;
}

.custom-faq-final .accordion-button:not(.collapsed) .faq-toggle-icon {
    transform: rotate(45deg);
    background: #FF7419 !important;
    color: #fff;
}

.custom-faq-final .accordion-button:focus {
    box-shadow: none;
}
/* Precise FAQ Styling */
.custom-faq-precise .accordion-button::after {
    display: none;
}

.custom-faq-precise .accordion-button:not(.collapsed) .faq-icon-box {
    transform: rotate(45deg);
    background: #FF7419 !important;
    color: #fff !important;
}

.custom-faq-precise .accordion-item {
    transition: all 0.3s ease;
}

.custom-faq-precise .accordion-item:hover {
    background: #e5e5e5 !important;
}

.custom-faq-precise .accordion-button:focus {
    box-shadow: none;
}

/* FAQ v3 Styling */
.custom-faq-v3 .accordion-button::after {
    display: none;
}

.custom-faq-v3 .accordion-button:not(.collapsed) .faq-toggle-btn {
    transform: rotate(45deg);
    background: #FF7419 !important;
    color: #fff !important;
}

.custom-faq-v3 .accordion-item {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.custom-faq-v3 .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.custom-faq-v3 .accordion-button:focus {
    box-shadow: none;
}
