/* ==========================================================================
   Prime Generator - Modern Premium Light Theme Stylesheet (v3.0 Light)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-amber: #d97706;
  --primary-hover: #b45309;
  --primary-light: #fef3c7;
  --primary-glow: rgba(217, 119, 6, 0.25);
  --secondary-orange: #ea580c;
  --accent-gold: #f59e0b;
  
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --light-card: #ffffff;
  --light-card-alt: #f1f5f9;
  --light-border: #e2e8f0;
  --light-border-hover: rgba(217, 119, 6, 0.4);
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-blur: blur(16px);
  --glass-border: 1px solid rgba(226, 232, 240, 0.8);
  
  --shadow-sm: 0 4px 10px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 10px 30px rgba(217, 119, 6, 0.2);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-amber);
}

/* Gradient Helpers */
.text-gradient-amber {
  background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-gold {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Topbar - Light Theme */
#topbar {
  height: 44px;
  font-size: 0.875rem;
  background: #0f172a !important;
  border-bottom: 1px solid #1e293b;
  transition: var(--transition-smooth);
  z-index: 1001;
}
#topbar .contact-info i {
  color: #f59e0b;
  font-size: 1.05rem;
}
#topbar .contact-info span {
  color: #f8fafc;
  font-weight: 500;
}
.topbar-badge {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-badge i {
  animation: pulse-ring 2s infinite;
}

/* Modern Header / Navbar - Light Theme */
#header {
  height: 80px;
  top: 44px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
}
#header.header-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo-text span {
  color: var(--primary-amber);
}
.brand-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #d97706, #ea580c);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
}
.brand-logo-text:hover .brand-icon-box {
  transform: rotate(8deg) scale(1.05);
}

.navbar ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar a, .navbar a:focus {
  font-family: var(--font-heading);
  color: #334155 !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 10px;
  transition: var(--transition-smooth);
  position: relative;
}
.navbar a:hover, .navbar .active, .navbar .active:focus {
  color: var(--primary-amber) !important;
  background: var(--primary-light);
}
.navbar a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-amber), var(--secondary-orange));
  transition: var(--transition-smooth);
  border-radius: 3px;
}
.navbar a:hover::after, .navbar .active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Action CTA Header Button */
.btn-quote-header {
  background: linear-gradient(135deg, var(--primary-amber) 0%, var(--secondary-orange) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-quote-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
  color: #ffffff !important;
}

/* Modern Hero Section - Light Overlay Theme */
.hero-slider-wrapper {
  position: relative;
  margin-top: 124px;
  overflow: hidden;
  background: #f8fafc;
}
.hero-slide-item {
  position: relative;
  height: 660px;
  overflow: hidden;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.9) contrast(1.05);
}
.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.35) 100%);
  display: flex;
  align-items: center;
}
.hero-content-box {
  max-width: 760px;
  color: var(--text-dark);
  z-index: 2;
  position: relative;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: var(--primary-amber);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.12);
}
.hero-title {
  font-size: 3.75rem;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 2.25rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-amber), var(--secondary-orange));
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.45);
  color: #ffffff;
}

.btn-hero-outline {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: #0f172a;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-outline:hover {
  background: #f1f5f9;
  border-color: var(--primary-amber);
  color: var(--primary-amber);
  transform: translateY(-3px);
}

/* Floating Stats Bar - Light Theme */
.hero-stats-wrapper {
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 32px 24px;
  position: relative;
  z-index: 5;
  margin-top: -40px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 16px;
  border-right: 1px solid var(--light-border);
}
.row > div:last-child .stat-card {
  border-right: none;
}
.stat-icon {
  width: 58px;
  height: 58px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: var(--primary-amber);
  transition: var(--transition-smooth);
}
.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, var(--primary-amber), var(--secondary-orange));
  color: #ffffff;
  transform: scale(1.08);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Section Header Styling - Light Theme */
.section-header-modern {
  text-align: center;
  margin-bottom: 3.75rem;
}
.section-header-modern .subtitle-tag {
  display: inline-block;
  color: var(--primary-amber);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fef3c7;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid #fde68a;
  margin-bottom: 1rem;
}
.section-header-modern .main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

/* Interactive KVA Calculator Section - Light Theme */
.kva-calc-section {
  background: #f8fafc;
  padding: 100px 0;
  position: relative;
}
.kva-calc-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.calc-option-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 18px 24px;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  width: 100%;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 14px;
}
.calc-option-btn:hover, .calc-option-btn.active {
  background: #fef3c7;
  border-color: var(--primary-amber);
  color: var(--primary-amber);
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.15);
}
.calc-result-box {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px dashed var(--primary-amber);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.08);
}
.calc-result-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-amber);
  line-height: 1;
}

/* About Us Modern Section - Light Theme */
.about-modern-section {
  padding: 110px 0;
  background: #ffffff;
}
.about-img-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--light-border);
}
.about-img-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.about-img-frame:hover img {
  transform: scale(1.04);
}
.about-experience-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: #0f172a;
  border: 1px solid var(--primary-amber);
  padding: 22px 30px;
  border-radius: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}
.feature-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 36px 0;
}
.feature-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: #1e293b;
  font-size: 1.025rem;
}
.feature-check-item i {
  font-size: 1.35rem;
  background: #fef3c7;
  color: var(--primary-amber);
  padding: 6px 10px;
  border-radius: 10px;
}

/* Why Choose Us Modern Cards - Light Theme */
.why-us-section {
  padding: 110px 0;
  background: #f1f5f9;
}
.why-card-modern {
  background: #ffffff;
  border-radius: 26px;
  padding: 42px 32px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-amber), var(--secondary-orange));
  opacity: 0;
  transition: var(--transition-smooth);
}
.why-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: var(--primary-amber);
}
.why-card-modern:hover::before {
  opacity: 1;
}
.why-icon-box {
  width: 68px;
  height: 68px;
  background: #fef3c7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.15rem;
  color: var(--primary-amber);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.why-card-modern:hover .why-icon-box {
  background: linear-gradient(135deg, var(--primary-amber), var(--secondary-orange));
  color: #ffffff;
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* Modern Services Section - Light Theme */
.services-modern-section {
  padding: 110px 0;
  background: #ffffff;
}
.service-card-modern {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--primary-amber);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card-modern:hover .service-img-wrapper img {
  transform: scale(1.1);
}
.service-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--primary-amber);
  color: var(--primary-amber);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}
.btn-service-action {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}
.service-card-modern:hover .btn-service-action {
  background: linear-gradient(135deg, var(--primary-amber), var(--secondary-orange));
  color: #ffffff;
  border-color: var(--primary-amber);
}

/* MD Message Section - Light Theme */
.md-section {
  padding: 110px 0;
  background: #f8fafc;
}
.md-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}
.md-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--primary-amber);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}
.md-photo-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.quote-icon-lg {
  font-size: 4rem;
  color: var(--primary-amber);
  opacity: 0.45;
  line-height: 1;
}

/* Modern Gallery - Light Theme */
.gallery-section {
  padding: 110px 0;
  background: #ffffff;
}
.modern-gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
}
.modern-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}
.gallery-overlay-zoom i {
  font-size: 2.2rem;
  color: #ffffff;
  background: var(--primary-amber);
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.modern-gallery-card:hover img {
  transform: scale(1.12);
}
.modern-gallery-card:hover .gallery-overlay-zoom {
  opacity: 1;
}

/* Modern Video Card */
.video-card-modern {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
}
.video-card-modern video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* FAQ Accordion Modern - Light Theme */
.modern-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px !important;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.modern-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  background: #ffffff;
  padding: 22px 28px;
  box-shadow: none !important;
}
.modern-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-amber);
  background: #fef3c7;
}
.modern-accordion .accordion-body {
  color: #475569;
  padding: 22px 28px;
  line-height: 1.75;
}

/* Contact Section & Form - Light Theme */
.contact-section-modern {
  padding: 110px 0;
  background: #f8fafc;
}
.contact-form-glass {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.contact-form-glass .form-control {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.98rem;
}
.contact-form-glass .form-control:focus {
  background: #ffffff;
  border-color: var(--primary-amber);
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.2);
  color: #0f172a;
}
.btn-contact-submit {
  background: linear-gradient(135deg, var(--primary-amber), var(--secondary-orange));
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 16px 38px;
  border-radius: 50px;
  border: none;
  width: 100%;
  font-size: 1.05rem;
  box-shadow: 0 8px 25px var(--primary-glow);
  transition: var(--transition-smooth);
}
.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
  color: #ffffff;
}

/* Footer - Sleek Navy Slate Theme */
#footer {
  background: #0f172a !important;
  color: #94a3b8;
  font-size: 0.95rem;
  border-top: 1px solid #1e293b;
}
#footer .footer-top {
  background: transparent !important;
  padding: 90px 0 60px 0;
}
#footer h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 26px;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer ul li {
  margin-bottom: 14px;
}
#footer ul a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-smooth);
}
#footer ul a:hover {
  color: #f59e0b;
  padding-left: 8px;
}

/* Floating Quick Action Buttons */
.floating-actions-container {
  position: fixed;
  bottom: 34px;
  right: 34px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.float-action-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}
.float-wa {
  background: #25d366;
}
.float-call {
  background: #0284c7;
}
.float-action-btn:hover {
  transform: scale(1.18);
  color: #fff;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* Responsive Overrides */
@media (max-width: 991px) {
  #topbar {
    display: none !important;
  }
  #header {
    top: 0;
  }
  .hero-slider-wrapper {
    margin-top: 80px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-slide-item {
    height: 540px;
  }
  .feature-check-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
  }
}
