/**
* Holtzi Website - Optimized Main Styles
* Consolidated: main.css + navbar-fix.css + utility classes
* Color scheme: White background with Holtzi dark green accents
*/

/*--------------------------------------------------------------
# CSS Variables - Minimalist Color Scheme
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Jost", sans-serif;

  /* Colors - Minimalist Palette */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Holtzi Brand Colors - Used Sparingly */
  --holtzi-green: #062a2f;
  --holtzi-green-light: #0a4a52;

  /* Product Colors (from products.css) */
  --primary-dark-green: #0f3443;
  --primary-teal: #14b8a6;
  --primary-teal-dark: #0d9488;
  --secondary-gold: #d4a017;
  --secondary-gold-dark: #b8880f;
  --accent-emerald: #059669;

  /* Primary Color Scheme */
  --background-color: var(--white);
  --text-color: var(--gray-900);
  --heading-color: var(--black);
  --accent-color: var(--holtzi-green);
  --border-color: var(--gray-200);

  /* Spacing */
  --section-padding: 5rem 0;
  --container-max-width: 1400px;
  --header-height: 80px;
  --header-height-mobile: 72px;

  /* Smooth scroll */
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Scroll offset for fixed header - ensures sections appear below header when using anchor links */
section,
.section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 768px) {
  section,
  .section {
    scroll-margin-top: calc(var(--header-height-mobile) + 20px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
section, .section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Header / Navigation - Clean & Minimal
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container-fluid,
.header .container-xl {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img {
  max-height: 60px;
  height: auto;
}

/* Navigation Menu */
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navmenu a {
  color: var(--text-color);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--accent-color);
}

/* Distinctive CTA Button in Nav */
.navmenu .nav-cta {
  background: var(--holtzi-green);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.navmenu .nav-cta:hover {
  background: #14b8a6 !important;
  color: #0f3443 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/*--------------------------------------------------------------
# Navbar Fixes (from navbar-fix.css)
--------------------------------------------------------------*/
/* Fix 1: Reduce navbar gap to prevent overflow on desktop */
@media (min-width: 1200px) {
  .navmenu ul {
    gap: 1.25rem; /* Reduced from 2rem */
  }

  .navmenu a {
    font-size: 0.9rem; /* Slightly smaller for better fit */
  }

  /* Ensure language selector doesn't overflow */
  .language-selector {
    flex-shrink: 0;
  }

  /* Make header container more flexible */
  .header .container-fluid,
  .header .container-xl {
    flex-wrap: nowrap;
  }
}

/* Fix 2: Prevent layout shift and logo lag on mobile */
@media (max-width: 1199px) {
  /* Reserve space for the logo to prevent layout shift */
  .header .logo {
    min-width: 120px;
  }

  .header .logo img {
    display: block;
    width: auto;
    height: 50px;
  }

  /* Ensure navbar placeholder doesn't cause layout shift */
  #navmenu-placeholder {
    min-height: 0;
  }
}

/* Preload logo to prevent flash */
.header .logo img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Mobile Navigation Expanded Styles */
@media (max-width: 1199px) {
  .header .container-fluid,
  .header .container-xl {
    padding: 1rem 1.5rem;
    position: relative;
  }

  .navmenu {
    margin-left: auto;
    position: relative;
    padding-right: 3.5rem;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--heading-color);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    position: fixed;
    top: 1.1rem;
    right: 1.25rem;
    box-shadow: 0 8px 20px rgba(6, 42, 47, 0.1);
    transition: all 0.2s ease;
    z-index: 1400;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }

  .navmenu ul {
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: var(--mobile-nav-offset, calc(var(--header-height-mobile) + 12px));
    right: 1.5rem;
    width: min(320px, calc(100vw - 3rem));
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(15, 52, 67, 0.15);
    padding: 0.75rem 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  }

  body.mobile-nav-active .navmenu ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  }

  .navmenu ul li {
    width: 100%;
  }

  .navmenu ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
  }

  .navmenu ul li a.nav-cta,
  .navmenu .nav-cta {
    margin: 0.5rem 1.5rem 0;
    display: block;
    text-align: center;
  }

  .navmenu ul li a.nav-cta {
    border-top: none;
  }

  .navmenu ul li + li a {
    border-top: 1px solid rgba(6, 42, 47, 0.08);
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  body.mobile-nav-active .mobile-nav-toggle {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.25);
  }
}

/*--------------------------------------------------------------
# Hero Section - Clean & Centered
--------------------------------------------------------------*/
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 6rem;
  background: var(--white);
  margin-top: 80px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# Product Banner - Clean Feature Section
--------------------------------------------------------------*/
.product-banner {
  padding: 5rem 0;
}

.product-banner .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-banner .row > [class*='col-'] {
  flex: 0 0 auto;
  width: 50%;
}

.product-banner h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.product-banner .product-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-banner .product-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-banner .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-banner .feature-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
}

.product-banner .btn-primary {
  background: var(--white);
  color: var(--holtzi-green);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.product-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .product-banner .row {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# About Section - Simple Two-Column Layout
--------------------------------------------------------------*/
.about {
  padding: 5rem 0;
}

.about .row {
  display: flex;
  gap: 3rem;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about ul i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

@media (max-width: 991px) {
  .about .row {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Services Section - Minimal Card Grid
--------------------------------------------------------------*/
.services {
  padding: 5rem 0;
  background: var(--white);
}

.services .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.services .service-item {
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.services .service-item:hover {
  transform: translateY(-4px);
}

.services .service-item .icon {
  margin-bottom: 1.5rem;
}

.services .service-item .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.services .service-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.services .service-item p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Team Section - Clean Stats Display
--------------------------------------------------------------*/
.team {
  padding: 5rem 0;
}

.team .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team .team-member {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
}

.team .team-member h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.team .team-member p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Contact Section - Minimal Contact Info
--------------------------------------------------------------*/
.contact {
  padding: 5rem 0;
}

.contact .info-wrap {
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact .info-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact .info-item p {
  color: var(--gray-600);
  margin: 0;
}

.contact iframe {
  border-radius: 8px;
  margin-top: 2rem;
}

/*--------------------------------------------------------------
# Contact Form Page
--------------------------------------------------------------*/
.contact-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #0f3443 0%, #0a3b47 50%, #062a2f 100%);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial accent overlay */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above overlay */
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero .faq-contact-link {
  color: #14b8a6;
  border-bottom-color: rgba(20, 184, 166, 0.4);
}

.contact-hero .faq-contact-link:hover,
.contact-hero .faq-contact-link:focus {
  color: #2dd4bf;
  border-bottom-color: rgba(45, 212, 191, 0.6);
}

.contact-form-section {
  padding: 4rem 0 6rem;
}

/* Contact Info Box */
.contact-info-box {
  padding: 2.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  height: 100%;
}

.contact-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail i {
  font-size: 1.75rem;
  color: var(--holtzi-green);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

.contact-detail a:hover {
  color: var(--holtzi-green);
}

/* Contact Form Box */
.contact-form-box {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.contact-form .form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.2s ease;
  font-family: var(--default-font);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--holtzi-green);
  box-shadow: 0 0 0 3px rgba(6, 42, 47, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn-submit {
  background: var(--holtzi-green);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.contact-form .btn-submit:hover {
  background: var(--holtzi-green-light);
  transform: translateY(-2px);
}

.contact-form .form-status {
  margin-top: 1rem;
}

.contact-form .form-status p {
  padding: 1rem;
  border-radius: 8px;
  margin: 0;
}

.contact-form .text-success {
  background: #d1fae5;
  color: #065f46;
}

.contact-form .text-danger {
  background: #fee2e2;
  color: #991b1b;
}

.contact-form .text-info {
  background: #dbeafe;
  color: #1e40af;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }

  .contact-hero p {
    font-size: 1.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }

  .contact-form-box,
  .contact-info-box {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button - Simple Circle
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-color);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top i {
  font-size: 1.5rem;
}

.scroll-top:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/*--------------------------------------------------------------
# Use Cases Section - Interactive
--------------------------------------------------------------*/
.use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.use-case-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.use-case-item.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--holtzi-green);
  transform: translateX(8px);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.use-case-item.active .use-case-icon {
  background: var(--holtzi-green);
  transform: scale(1.1);
}

.use-case-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.use-case-item.active .use-case-text {
  color: var(--white);
  font-weight: 600;
}

.use-case-display {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.use-case-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.use-case-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.use-case-info p {
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .use-cases-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .use-case-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .use-case-item:hover,
  .use-case-item.active {
    transform: translateY(-4px);
  }

  .use-case-text {
    font-size: 0.875rem;
  }

  .use-case-display {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .use-cases-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.flex-column { flex-direction: column; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

.light-background {
  background-color: var(--holtzi-green);
  color: var(--white);
}

.light-background h1,
.light-background h2,
.light-background h3,
.light-background h4,
.light-background h5,
.light-background p {
  color: var(--white);
}

.card-contrast {
  background: rgba(15, 52, 67, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.card-contrast:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(7, 36, 20, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.story-card {
  position: relative;
  background: url("../img/rana_holtzi.jpg") center/cover no-repeat;
  overflow: hidden;
  color: var(--white);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 36, 20, 0.85),
      rgba(7, 36, 20, 0.45));
}

.story-card .card-body {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(2px);
}

.story-card .card-title,
.story-card .card-text {
  color: var(--white);
}

.reveal-list .list-group-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    background 0.35s ease;
  border-left: 4px solid transparent;
}

.reveal-list .list-group-item:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 24px rgba(13, 44, 33, 0.1);
  border-left-color: var(--holtzi-green);
  background: rgba(13, 44, 33, 0.04);
}

.faq-contact-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.faq-contact-link:hover,
.faq-contact-link:focus {
  color: var(--holtzi-green);
  border-color: rgba(20, 184, 166, 0.6);
}

.light-background .product-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.light-background .product-description,
.light-background .feature-list li {
  color: rgba(255, 255, 255, 0.85);
}

.dark-background {
  background-color: var(--accent-color);
  color: var(--white);
}

.dark-background h1,
.dark-background h2,
.dark-background h3,
.dark-background p {
  color: var(--white);
}

/*--------------------------------------------------------------
# NEW Utility Classes for Inline Styles
--------------------------------------------------------------*/
/* Logo standard height */
.logo-standard {
  height: 50px;
}

/* Page title section styling */
.page-title-section {
  background-color: var(--background-color);
  padding: 120px 0 60px;
}

/* Required field asterisk */
.required-asterisk {
  color: #dc3545;
  font-weight: bold;
  background: none;
}
.card-contrast .card-title,
.card-contrast .card-text,
.card-contrast .icon,
.card-contrast .icon i,
.card-contrast .card-title h5 {
  color: var(--white);
}
