/* ==========================================================================
   NCR Generators - Official Modern Dark Green (Emerald) Theme Stylesheet
   ========================================================================== */

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

:root {
  /* Dark Green Theme Color Palette */
  --green-body: #030f09;
  --dark-bg: #061a10;
  --dark-surface: #0a291a;
  --dark-card: rgba(14, 51, 33, 0.88);
  --dark-card-solid: #0e3321;
  --dark-border: rgba(52, 211, 153, 0.15);
  --dark-border-hover: rgba(52, 211, 153, 0.4);
  
  --primary-emerald: #10b981;
  --primary-hover: #059669;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --accent-mint: #34d399;
  --secondary-emerald: #047857;
  --light-mint: #a7f3d0;
  
  --text-white: #ffffff;
  --text-light: #e6f4ed;
  --text-muted: #9fe3c2;
  --text-subtle: #6ee7b7;

  /* Font Family Stacks with Safe Fallbacks */
  --font-heading: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  --glass-bg: rgba(6, 26, 16, 0.90);
  --glass-blur: blur(16px);
  --glass-border: 1px solid rgba(52, 211, 153, 0.18);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.25);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--primary-emerald);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--accent-mint);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--green-body);
}
::-webkit-scrollbar-thumb {
  background: #0d3822;
  border-radius: 5px;
  border: 2px solid var(--green-body);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-emerald);
}

/* Global Text Visibility & Contrast Overrides for Dark Theme */
.text-muted, p.text-muted, span.text-muted, div.text-muted, small.text-muted, label.text-muted, td.text-muted, th.text-muted {
  color: #9fe3c2 !important;
}
.text-secondary {
  color: #a7f3d0 !important;
}
.text-dark {
  color: #e6f4ed !important;
}
.text-body {
  color: #e6f4ed !important;
}

/* Form Input Placeholders & Dropdown Select Options Visibility */
.form-control::placeholder, textarea::placeholder, input::placeholder {
  color: #9fe3c2 !important;
  opacity: 0.8 !important;
}
::-webkit-input-placeholder {
  color: #9fe3c2 !important;
  opacity: 0.8 !important;
}
::-moz-placeholder {
  color: #9fe3c2 !important;
  opacity: 0.8 !important;
}
:-ms-input-placeholder {
  color: #9fe3c2 !important;
  opacity: 0.8 !important;
}

select option, .form-select option, .form-control option {
  background-color: #082416 !important;
  color: #ffffff !important;
  padding: 10px;
}

/* AOS Animation Fail-safe Opacity Override */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Gradient Text Helpers */
.text-gradient-emerald, .text-gradient-amber {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-light {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Modern Topbar */
#topbar {
  height: 44px;
  font-size: 0.875rem;
  background: #020905 !important;
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  transition: var(--transition-smooth);
  z-index: 1000;
}
#topbar .contact-info i {
  color: var(--primary-emerald);
  font-size: 1rem;
}
#topbar .contact-info a {
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
}
#topbar .contact-info a:hover {
  color: var(--accent-mint);
}
.topbar-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-mint);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Modern Header / Navbar */
#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 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  z-index: 999;
}
#header.header-scrolled {
  top: 0;
  background: rgba(4, 18, 11, 0.96);
  border-bottom: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -0.03em;
}
.brand-logo-text span {
  color: var(--accent-mint);
}
.brand-icon-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-emerald));
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 0 15px var(--primary-glow);
}

.navbar ul {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.navbar a, .navbar a:focus {
  font-family: var(--font-heading);
  color: #e6f4ed !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  text-decoration: none;
}
.navbar a:hover, .navbar .active, .navbar .active:focus {
  color: var(--accent-mint) !important;
  background: rgba(16, 185, 129, 0.15);
}
.navbar a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary-emerald);
  transition: var(--transition-smooth);
  border-radius: 2px;
}
.navbar a:hover::after, .navbar .active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Navbar Dropdown styling */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #082416;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  border-radius: 14px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  min-width: 260px;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown ul a {
  padding: 10px 20px !important;
  font-size: 0.9rem;
  color: #9fe3c2 !important;
  border-radius: 0;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active {
  color: var(--accent-mint) !important;
  background: rgba(16, 185, 129, 0.2) !important;
}

/* Action CTA Header Button */
.btn-quote-header {
  background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--secondary-emerald) 100%);
  color: #ffffff !important;
  font-weight: 700;
  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;
}
.btn-quote-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
  color: #ffffff !important;
}

/* Mobile Navigation Drawer & Body Lock */
body.mobile-nav-active {
  overflow: hidden !important;
}

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 1.55rem;
  cursor: pointer;
  display: none;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  background: rgba(16, 185, 129, 0.3);
  border-color: rgba(52, 211, 153, 0.6);
  color: var(--accent-mint);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.35);
}

@media (max-width: 991px) {
  #topbar {
    display: none !important;
  }
  #header {
    top: 0 !important;
    height: 75px !important;
  }
  .mobile-nav-toggle {
    display: inline-flex !important;
  }
  .navbar ul {
    display: none;
  }

  /* Completely remove/hide Request Quote button on mobile screen top menu and drawer */
  .btn-quote-header,
  .mobile-drawer-cta,
  .btn-quote-drawer {
    display: none !important;
  }

  .brand-logo-text {
    font-size: 1.35rem !important;
  }
  .brand-icon-box {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.15rem !important;
  }

  .hero-slider-wrapper,
  .page-banner-header {
    margin-top: 75px !important;
  }

  .navbar-mobile {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(3, 15, 9, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    z-index: 9999 !important;
    padding: 85px 20px 40px 20px !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease-in-out !important;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: fixed !important;
    top: 15.5px !important;
    right: 20px !important;
    z-index: 10000 !important;
    background: rgba(16, 185, 129, 0.25) !important;
    border: 1px solid rgba(52, 211, 153, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
  }

  .navbar-mobile ul {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    overflow-y: visible !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .navbar-mobile li {
    width: 100% !important;
    position: relative !important;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 13px 18px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
  }

  .navbar-mobile a::after {
    display: none !important;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile a.active {
    background: rgba(16, 185, 129, 0.18) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    color: var(--accent-mint) !important;
  }

  .navbar-mobile .dropdown > a .bi-chevron-down {
    transition: transform 0.3s ease !important;
    font-size: 1rem !important;
  }
  .navbar-mobile .dropdown.dropdown-open > a .bi-chevron-down {
    transform: rotate(180deg) !important;
    color: var(--accent-mint) !important;
  }

  .navbar-mobile .dropdown ul {
    position: static !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(4, 20, 11, 0.85) !important;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(52, 211, 153, 0.25) !important;
    margin: 8px 0 12px 12px !important;
    border-radius: 14px !important;
    padding: 10px !important;
    gap: 6px !important;
    width: calc(100% - 12px) !important;
  }

  .navbar-mobile .dropdown ul.dropdown-active {
    display: flex !important;
    flex-direction: column !important;
  }

  .navbar-mobile .dropdown ul a {
    padding: 10px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #a7f3d0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
  }

  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul a.active {
    background: rgba(16, 185, 129, 0.25) !important;
    color: #ffffff !important;
  }
}

@media (max-width: 400px) {
  .brand-logo-text {
    font-size: 1.2rem !important;
  }
  .brand-icon-box {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
}

/* Modern Hero Section & Carousel */
.hero-slider-wrapper {
  position: relative;
  margin-top: 124px;
  overflow: hidden;
  background: var(--green-body);
}
.hero-slide-item {
  position: relative;
  height: 650px;
  overflow: hidden;
}
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.6) contrast(1.15);
}
.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 9, 0.95) 0%, rgba(3, 15, 9, 0.75) 50%, rgba(3, 15, 9, 0.4) 100%);
  display: flex;
  align-items: center;
}
.hero-content-box {
  max-width: 760px;
  color: #fff;
  z-index: 2;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--accent-mint);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-emerald));
  color: #ffffff !important;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  color: #ffffff !important;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(52, 211, 153, 0.3);
  color: #ffffff !important;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-outline:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--accent-mint);
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* Floating Stats Bar */
.hero-stats-wrapper {
  background: #082416;
  border: 1px solid var(--dark-border);
  padding: 30px 0;
  position: relative;
  z-index: 5;
  margin-top: -30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
}
.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-mint);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Section Header Styling - Dark Green */
.section-header-modern {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-modern .subtitle-tag {
  display: inline-block;
  color: var(--accent-mint);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  margin-bottom: 0.75rem;
}
.section-header-modern .main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}
.section-header-modern p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 12px auto 0 auto;
}

/* Page Banner Header (Inner Pages) */
.page-banner-header {
  margin-top: 124px;
  padding: 80px 0 60px 0;
  background: linear-gradient(180deg, #030f09 0%, #082416 100%);
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  position: relative;
  overflow: hidden;
}
.page-banner-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb-custom a {
  color: var(--text-light);
  text-decoration: none;
}
.breadcrumb-custom a:hover {
  color: var(--accent-mint);
}
.breadcrumb-custom i {
  font-size: 0.75rem;
  color: var(--primary-emerald);
}

/* About Us Section - Dark Green */
.about-modern-section {
  padding: 100px 0;
  background: var(--green-body);
}
.about-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}
.about-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.9) contrast(1.05);
}
.about-img-frame:hover img {
  transform: scale(1.03);
}
.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(6, 26, 16, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--primary-emerald);
  padding: 20px 28px;
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-glow);
}
.feature-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px 0;
}
.feature-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-light);
}
.feature-check-item i {
  color: var(--accent-mint);
  font-size: 1.25rem;
  background: rgba(16, 185, 129, 0.15);
  padding: 4px 8px;
  border-radius: 8px;
}

/* Why Choose Us Cards - Dark Green */
.why-us-section {
  padding: 100px 0;
  background: #05180f;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.why-card-modern {
  background: #0a2b1b;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid var(--dark-border);
  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: 4px;
  background: linear-gradient(90deg, var(--primary-emerald), var(--accent-mint));
  opacity: 0;
  transition: var(--transition-smooth);
}
.why-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(52, 211, 153, 0.4);
  background: #0e3824;
}
.why-card-modern:hover::before {
  opacity: 1;
}
.why-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-mint);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.why-card-modern:hover .why-icon-box {
  background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-emerald));
  color: #fff;
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* Modern Services Cards - Dark Green */
.services-modern-section {
  padding: 100px 0;
  background: var(--green-body);
  color: #fff;
}
.service-card-modern {
  background: #0a291a;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card-modern:hover {
  transform: translateY(-8px);
  border-color: var(--accent-mint);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
  background: #0e3321;
}
.service-img-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85) contrast(1.1);
}
.service-card-modern:hover .service-img-wrapper img {
  transform: scale(1.08);
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(3, 15, 9, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-emerald);
  color: var(--accent-mint);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-service-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  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: var(--primary-emerald);
  color: #ffffff !important;
  border-color: var(--primary-emerald);
}

/* Individual Service Detail Page Layout */
.service-detail-section {
  padding: 80px 0 100px 0;
  background: var(--green-body);
}
.service-hero-img-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  margin-bottom: 32px;
}
.service-hero-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.9);
}

.spec-table-dark {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #082416;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}
.spec-table-dark th, .spec-table-dark td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
  font-size: 0.95rem;
}
.spec-table-dark th {
  background: #0b331f;
  color: var(--accent-mint);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
}
.spec-table-dark td {
  color: var(--text-light);
}

.sidebar-card-black {
  background: #082416;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-emerald);
}
.service-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-nav-list li {
  margin-bottom: 10px;
}
.service-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 12px;
  color: var(--text-light) !important;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.service-nav-list a:hover, .service-nav-list a.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary-emerald);
  color: var(--accent-mint) !important;
}

.hotline-box-dark {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
  border: 1px solid var(--primary-emerald);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
}

/* Interactive KVA Calculator Section */
.kva-calc-section {
  background: linear-gradient(180deg, var(--green-body) 0%, #061a10 100%);
  padding: 80px 0;
  position: relative;
  color: #fff;
}
.kva-calc-card {
  background: #082819;
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.calc-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #e6f4ed;
  padding: 16px 20px;
  border-radius: 14px;
  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: 12px;
}
.calc-option-btn:hover, .calc-option-btn.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary-emerald);
  color: var(--accent-mint);
}
.calc-result-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
  border: 1px dashed var(--primary-emerald);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
.calc-result-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-mint);
}

/* Gallery Section - Dark Green */
.gallery-section {
  padding: 100px 0;
  background: var(--green-body);
}
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-light);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary-emerald);
  color: #fff;
  border-color: var(--primary-emerald);
}

.modern-gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  border: 1px solid var(--dark-border);
}
.modern-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.gallery-overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 9, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}
.gallery-overlay-zoom i {
  font-size: 2rem;
  color: var(--accent-mint);
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.modern-gallery-card:hover img {
  transform: scale(1.1);
}
.modern-gallery-card:hover .gallery-overlay-zoom {
  opacity: 1;
}

/* FAQ Accordion - Dark Green */
.modern-accordion .accordion-item {
  background: #082416;
  border: 1px solid var(--dark-border);
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.modern-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  background: #082416;
  padding: 20px 24px;
  box-shadow: none !important;
}
.modern-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-mint);
  background: rgba(16, 185, 129, 0.12);
}
.modern-accordion .accordion-button::after {
  filter: invert(1);
}
.modern-accordion .accordion-body {
  color: var(--text-muted);
  padding: 20px 24px;
  line-height: 1.7;
  background: #051a0f;
  border-top: 1px solid rgba(52, 211, 153, 0.1);
}

/* Contact Section & Form - Dark Green */
.contact-section-modern {
  padding: 100px 0;
  background: var(--green-body);
  color: #fff;
}
.contact-form-glass {
  background: #082819;
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.contact-form-glass .form-control, .contact-form-glass .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
}
.contact-form-glass .form-control:focus, .contact-form-glass .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-emerald);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  color: #fff;
}
.contact-info-card-black {
  background: #082416;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}
.contact-info-card-black:hover {
  border-color: var(--primary-emerald);
  transform: translateY(-4px);
  background: #0d3822;
}
.contact-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.btn-contact-submit {
  background: linear-gradient(135deg, var(--primary-emerald), var(--secondary-emerald));
  color: #ffffff !important;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: var(--transition-smooth);
}
.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
  color: #ffffff !important;
}

/* Modern Footer - Dark Green */
#footer {
  background: #020905 !important;
  color: var(--text-muted);
  font-size: 0.925rem;
  border-top: 1px solid rgba(52, 211, 153, 0.15);
}
#footer .footer-top {
  background: transparent !important;
  padding: 80px 0 50px 0;
}
#footer h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
#footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-emerald);
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer ul li {
  margin-bottom: 12px;
}
#footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}
#footer ul a:hover {
  color: var(--accent-mint);
  padding-left: 6px;
}

/* Floating Action Buttons (WhatsApp & Call) */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
}
.float-wa {
  background: #25d366;
}
.float-call {
  background: #10b981;
  color: #ffffff !important;
}
.float-action-btn:hover {
  transform: scale(1.15);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Modern Video Card Styling */
.video-card-modern {
  background: #082416;
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}
.video-card-modern:hover {
  border-color: var(--accent-mint);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}
.video-card-modern video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
