/* LXT Carpet Cleaners Custom Styles */

:root {
  --onyx: #3C3D48;
  --jet: #2F313C;
  --onyx-2: #3B3B44;
  --white: #FFFEFE;
  --onyx-3: #31343E;
  --primary-color: #F8A325;
  --secondary-color: #3C3D48;
  --black-color: #2F313C;
  --light-black-color: #3B3B44;
  --dark-color: #31343E;
  --body-color: #747474;
  --gray-color: #777F81;
  --light-color: #FFFEFE;
}

/* ========================================
   ICON STYLING - AWESOME ICON COLORS
   ======================================== */

/* General Icon Styling */
.fas, .far, .fab {
  transition: all 0.3s ease;
}

/* Primary Color Icons */
.fas.text-primary,
.far.text-primary,
.fab.text-primary {
  color: var(--primary-color) !important;
}

/* Icon Background Containers */
.lxt-service-icon,
.lxt-feature-icon,
.lxt-contact-icon,
.lxt-process-icon {
  position: relative;
  overflow: hidden;
}

.lxt-service-icon::before,
.lxt-feature-icon::before,
.lxt-contact-icon::before,
.lxt-process-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 50%, #d88a1a 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lxt-service-icon:hover::before,
.lxt-feature-icon:hover::before,
.lxt-contact-icon:hover::before,
.lxt-process-icon:hover::before {
  opacity: 1;
}

/* Icon Colors by Type */
/* Shield/Security Icons */
.fa-shield-alt,
.fa-shield-halved,
.fa-shield {
  color: #4CAF50 !important;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smile/Happy Icons */
.fa-smile,
.fa-grin,
.fa-laugh {
  color: #FF9800 !important;
  background: linear-gradient(135deg, #FF9800, #F57C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Check/Success Icons */
.fa-check,
.fa-check-circle,
.fa-check-square {
  color: #4CAF50 !important;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Heart/Love Icons */
.fa-heart,
.fa-heartbeat {
  color: #E91E63 !important;
  background: linear-gradient(135deg, #E91E63, #C2185B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Phone/Communication Icons */
.fa-phone,
.fa-phone-alt,
.fa-phone-square {
  color: #2196F3 !important;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Map/Location Icons */
.fa-map-marker-alt,
.fa-map-pin,
.fa-location-dot {
  color: #F44336 !important;
  background: linear-gradient(135deg, #F44336, #D32F2F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Clock/Time Icons */
.fa-clock,
.fa-clock-o,
.fa-hourglass {
  color: #9C27B0 !important;
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Search Icons */
.fa-search,
.fa-search-plus {
  color: #607D8B !important;
  background: linear-gradient(135deg, #607D8B, #455A64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Water/Cleaning Icons */
.fa-tint,
.fa-droplet,
.fa-water {
  color: #00BCD4 !important;
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tools/Equipment Icons */
.fa-wrench,
.fa-tools,
.fa-cog {
  color: #795548 !important;
  background: linear-gradient(135deg, #795548, #5D4037);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hot Tub/Spa Icons */
.fa-hot-tub,
.fa-bath {
  color: #FF5722 !important;
  background: linear-gradient(135deg, #FF5722, #E64A19);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fire/Burn Icons */
.fa-fire,
.fa-burn {
  color: #FF9800 !important;
  background: linear-gradient(135deg, #FF9800, #F57C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Toilet/Bathroom Icons */
.fa-toilet,
.fa-restroom {
  color: #607D8B !important;
  background: linear-gradient(135deg, #607D8B, #455A64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bars/Menu Icons */
.fa-bars,
.fa-navicon {
  color: var(--onyx) !important;
}

/* Times/Close Icons */
.fa-times,
.fa-close {
  color: #F44336 !important;
}

/* Enhanced Icon Hover Effects */
.lxt-service-icon .fas,
.lxt-service-icon .far,
.lxt-service-icon .fab,
.lxt-feature-icon .fas,
.lxt-feature-icon .far,
.lxt-feature-icon .fab,
.lxt-contact-icon .fas,
.lxt-contact-icon .far,
.lxt-contact-icon .fab,
.lxt-process-icon .fas,
.lxt-process-icon .far,
.lxt-process-icon .fab {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.lxt-service-icon:hover .fas,
.lxt-service-icon:hover .far,
.lxt-service-icon:hover .fab,
.lxt-feature-icon:hover .fas,
.lxt-feature-icon:hover .far,
.lxt-feature-icon:hover .fab,
.lxt-contact-icon:hover .fas,
.lxt-contact-icon:hover .far,
.lxt-contact-icon:hover .fab,
.lxt-process-icon:hover .fas,
.lxt-process-icon:hover .far,
.lxt-process-icon:hover .fab {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2);
}

/* Icon Pulse Animation */
@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.lxt-service-icon:hover,
.lxt-feature-icon:hover,
.lxt-contact-icon:hover,
.lxt-process-icon:hover {
  animation: iconPulse 0.6s ease-in-out;
}

/* Icon Glow Effect */
.lxt-service-icon .fas,
.lxt-feature-icon .fas,
.lxt-contact-icon .fas,
.lxt-process-icon .fas {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.lxt-service-icon:hover .fas,
.lxt-feature-icon:hover .fas,
.lxt-contact-icon:hover .fas,
.lxt-process-icon:hover .fas {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Special Icon Styling for Different Sections */
/* Header Icons */
#header-top .fas,
#primary-header .fas {
  color: var(--primary-color) !important;
}

/* Footer Icons */
.lxt-footer .fas {
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
}

.lxt-footer .fas:hover {
  color: var(--white) !important;
  transform: scale(1.1);
}

/* Contact Feature Icons */
.lxt-contact-feature .fas {
  color: var(--primary-color) !important;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* Navbar Icons */
.navbar-icon {
  color: var(--onyx) !important;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  color: var(--primary-color) !important;
}

/* Search Icon Special Styling */
.search {
  color: var(--onyx) !important;
  transition: all 0.3s ease;
}

.search:hover {
  color: var(--primary-color) !important;
  transform: scale(1.1);
}

/* Icon Size Variations */
.lxt-service-icon .fas,
.lxt-service-icon .far,
.lxt-service-icon .fab {
  font-size: 1.5rem;
}

.lxt-feature-icon .fas,
.lxt-feature-icon .far,
.lxt-feature-icon .fab {
  font-size: 1.25rem;
}

.lxt-contact-icon .fas,
.lxt-contact-icon .far,
.lxt-contact-icon .fab {
  font-size: 1.5rem;
}

.lxt-process-icon .fas,
.lxt-process-icon .far,
.lxt-process-icon .fab {
  font-size: 1.75rem;
}

/* Icon Container Enhancements */
.lxt-service-icon,
.lxt-feature-icon,
.lxt-contact-icon,
.lxt-process-icon {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Icon Container Hover Effects */
.lxt-service-icon:hover,
.lxt-feature-icon:hover,
.lxt-contact-icon:hover,
.lxt-process-icon:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* Icon Color Overrides for Container Icons */
.lxt-service-icon .fas,
.lxt-service-icon .far,
.lxt-service-icon .fab,
.lxt-feature-icon .fas,
.lxt-feature-icon .far,
.lxt-feature-icon .fab,
.lxt-contact-icon .fas,
.lxt-contact-icon .far,
.lxt-contact-icon .fab,
.lxt-process-icon .fas,
.lxt-process-icon .far,
.lxt-process-icon .fab {
  color: var(--white) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Icon Glow for Container Icons */
.lxt-service-icon .fas,
.lxt-feature-icon .fas,
.lxt-contact-icon .fas,
.lxt-process-icon .fas {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.lxt-service-icon:hover .fas,
.lxt-feature-icon:hover .fas,
.lxt-contact-icon:hover .fas,
.lxt-process-icon:hover .fas {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Special Styling for Icons Outside Containers */
.fas:not(.lxt-service-icon .fas):not(.lxt-feature-icon .fas):not(.lxt-contact-icon .fas):not(.lxt-process-icon .fas),
.far:not(.lxt-service-icon .far):not(.lxt-feature-icon .far):not(.lxt-contact-icon .far):not(.lxt-process-icon .far),
.fab:not(.lxt-service-icon .fab):not(.lxt-feature-icon .fab):not(.lxt-contact-icon .fab):not(.lxt-process-icon .fab) {
  /* Keep the gradient colors for icons outside containers */
}

/* About Section Icon Styling */
#about .fas,
#about .far,
#about .fab {
  color: var(--primary-color) !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

#about .fas:hover,
#about .far:hover,
#about .fab:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Emergency Services Section Icons */
.lxt-section .fas,
.lxt-section .far,
.lxt-section .fab {
  color: var(--primary-color) !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.lxt-section .fas:hover,
.lxt-section .far:hover,
.lxt-section .fab:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Specialized Services Section Icons */
.lxt-section.bg-light .fas,
.lxt-section.bg-light .far,
.lxt-section.bg-light .fab {
  color: var(--primary-color) !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.lxt-section.bg-light .fas:hover,
.lxt-section.bg-light .far:hover,
.lxt-section.bg-light .fab:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Icon Spacing and Alignment */
.fas, .far, .fab {
  display: inline-block;
  vertical-align: middle;
}

/* Icon Container Spacing */
.lxt-service-icon,
.lxt-feature-icon,
.lxt-contact-icon,
.lxt-process-icon {
  margin-right: 15px;
  flex-shrink: 0;
}

/* Icon Text Alignment */
.d-flex.align-items-start .fas,
.d-flex.align-items-start .far,
.d-flex.align-items-start .fab {
  margin-top: 2px;
}

/* Enhanced Icon Animations */
@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.lxt-service-icon:hover,
.lxt-feature-icon:hover,
.lxt-contact-icon:hover,
.lxt-process-icon:hover {
  animation: iconBounce 0.8s ease-in-out;
}

/* Icon Shine Effect */
.lxt-service-icon::after,
.lxt-feature-icon::after,
.lxt-contact-icon::after,
.lxt-process-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.lxt-service-icon:hover::after,
.lxt-feature-icon:hover::after,
.lxt-contact-icon:hover::after,
.lxt-process-icon:hover::after {
  opacity: 1;
  animation: shine 0.6s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Mobile Responsive Icon Sizing */
@media (max-width: 768px) {
  .lxt-service-icon .fas,
  .lxt-service-icon .far,
  .lxt-service-icon .fab {
    font-size: 1.25rem;
  }
  
  .lxt-feature-icon .fas,
  .lxt-feature-icon .far,
  .lxt-feature-icon .fab {
    font-size: 1rem;
  }
  
  .lxt-contact-icon .fas,
  .lxt-contact-icon .far,
  .lxt-contact-icon .fab {
    font-size: 1.25rem;
  }
  
  .lxt-process-icon .fas,
  .lxt-process-icon .far,
  .lxt-process-icon .fab {
    font-size: 1.5rem;
  }
}

/* Enhanced Header Styles */
#header-top {
  background: linear-gradient(135deg, var(--onyx) 0%, var(--jet) 100%);
  color: var(--white);
}

#header-top .phone {
  color: var(--white) !important;
}

#primary-header {
  background: var(--white) !important;
  border: 1px solid rgba(60, 61, 72, 0.1);
}

#primary-header .navbar-nav .nav-link {
  color: var(--onyx) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

#primary-header .navbar-nav .nav-link:hover,
#primary-header .navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.lxt-cta-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lxt-cta-btn:hover {
  background: #e6951f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(248, 163, 37, 0.3);
}

/* Enhanced Hero Section */
.lxt-hero {
  background: linear-gradient(135deg, var(--onyx) 0%, var(--jet) 100%);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.lxt-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.lxt-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lxt-hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  color: var(--white) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced Section Styles */
.lxt-section {
  padding: 80px 0;
  position: relative;
}

.lxt-section.bg-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.lxt-section-title {
  color: var(--onyx);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.lxt-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.lxt-section-subtitle {
  color: var(--gray-color);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Service Cards */
.lxt-service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(60, 61, 72, 0.05);
  position: relative;
  overflow: hidden;
}

.lxt-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #e6951f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lxt-service-card:hover::before {
  transform: scaleX(1);
}

.lxt-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lxt-service-card h4 {
  color: var(--onyx);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.lxt-service-card p {
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Icon Styles */
.lxt-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.lxt-service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.lxt-service-card:hover .lxt-service-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Enhanced FAQ Styles */
.lxt-faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(60, 61, 72, 0.05);
  overflow: hidden;
}

.lxt-faq-item .accordion-button {
  background: var(--white);
  color: var(--onyx);
  font-weight: 600;
  border: none;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.lxt-faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  color: var(--white);
}

.lxt-faq-item .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.lxt-faq-item .accordion-body {
  padding: 20px 25px;
  color: var(--body-color);
  line-height: 1.6;
}

/* Enhanced Contact Section */
.lxt-contact-card {
  background: linear-gradient(135deg, var(--onyx-2) 0%, var(--onyx-3) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.lxt-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.lxt-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.lxt-contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.lxt-contact-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.lxt-contact-card:hover .lxt-contact-icon {
  transform: scale(1.1);
  background: #e6951f;
}

.lxt-contact-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
}

.lxt-contact-card p {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  opacity: 0.9;
  line-height: 1.6;
}

.lxt-contact-details {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.lxt-contact-details h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.lxt-contact-details p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.lxt-contact-details a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.lxt-contact-details a:hover {
  color: var(--primary-color);
}

/* Contact Highlight Section */
.lxt-contact-highlight {
  background: linear-gradient(135deg, var(--onyx) 0%, var(--jet) 100%);
  color: var(--white);
  padding: 50px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.lxt-contact-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.lxt-contact-highlight h3 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.lxt-contact-highlight p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  opacity: 0.9;
  line-height: 1.6;
}

.lxt-contact-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.lxt-contact-feature {
  display: flex;
  align-items: center;
  background: rgba(248, 163, 37, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(248, 163, 37, 0.2);
  transition: all 0.3s ease;
}

.lxt-contact-feature:hover {
  background: rgba(248, 163, 37, 0.2);
  transform: translateY(-2px);
}

.lxt-contact-feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.lxt-contact-feature span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.lxt-cta-btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.lxt-cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(248, 163, 37, 0.4);
}

/* Enhanced Footer */
.lxt-footer {
  background: linear-gradient(135deg, var(--jet) 0%, var(--onyx) 100%);
  color: var(--white);
  padding: 40px 0 20px;
  position: relative;
}

.lxt-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.lxt-footer h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.lxt-footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.lxt-footer a:hover {
  color: var(--primary-color);
}

/* Service Features Section */
.lxt-service-features {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.lxt-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(248, 163, 37, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.lxt-feature-item:hover {
  background: rgba(248, 163, 37, 0.1);
  transform: translateX(5px);
}

.lxt-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.lxt-feature-icon svg {
  width: 25px;
  height: 25px;
  color: var(--white);
}

.lxt-feature-content h5 {
  color: var(--onyx);
  font-weight: 600;
  margin-bottom: 8px;
}

.lxt-feature-content p {
  color: var(--body-color);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Pricing Section */
.lxt-pricing-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.lxt-pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.lxt-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lxt-pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.lxt-pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.lxt-pricing-title {
  color: var(--onyx);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.lxt-pricing-price {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.lxt-pricing-period {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.lxt-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.lxt-pricing-features li {
  padding: 8px 0;
  color: var(--body-color);
  position: relative;
  padding-left: 25px;
}

.lxt-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}



/* Specialized Services List Styles */
.lxt-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lxt-service-card ul li {
  padding: 5px 0;
  color: var(--body-color);
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.lxt-service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.8rem;
}

/* Process Section Responsive */
@media (max-width: 768px) {
  .lxt-section .col-lg-2 {
    margin-bottom: 20px;
  }
  
  .lxt-service-card ul li {
    font-size: 0.85rem;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .lxt-hero h1 {
    font-size: 2.5rem;
  }
  
  .lxt-hero .subtitle {
    font-size: 1.1rem;
  }
  
  .lxt-section-title {
    font-size: 2rem;
  }
  
  .lxt-section {
    padding: 60px 0;
  }
  
  .lxt-service-card,
  .lxt-pricing-card,
  .lxt-testimonial-card {
    padding: 20px;
  }
  
  .lxt-contact-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .lxt-contact-highlight {
    padding: 30px 25px;
  }
  
  .lxt-contact-highlight h3 {
    font-size: 1.5rem;
  }
  
  .lxt-contact-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .lxt-contact-feature {
    padding: 10px 15px;
  }
  
  .lxt-cta-btn-large {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
} 

/* Service Area Cards */
.lxt-service-area-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(60, 61, 72, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lxt-service-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #e6951f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lxt-service-area-card:hover::before {
  transform: scaleX(1);
}

.lxt-service-area-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lxt-service-area-card h5 {
  color: var(--onyx);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.lxt-service-area-card:hover h5 {
  color: var(--primary-color);
}

.lxt-service-area-card p {
  color: var(--body-color);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive adjustments for service areas */
@media (max-width: 768px) {
  .lxt-service-area-card {
    padding: 15px;
  }
  
  .lxt-service-area-card h5 {
    font-size: 1rem;
  }
  
  .lxt-service-area-card p {
    font-size: 0.85rem;
  }
} 

/* Process Section Cards */
.lxt-process-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(60, 61, 72, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lxt-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #e6951f 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lxt-process-card:hover::before {
  transform: scaleX(1);
}

.lxt-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lxt-process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e6951f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.lxt-process-icon svg {
  width: 35px;
  height: 35px;
  color: var(--white);
}

.lxt-process-card:hover .lxt-process-icon {
  transform: scale(1.1) rotate(5deg);
}

.lxt-process-card h5 {
  color: var(--onyx);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: center;
}

.lxt-process-card p {
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Navbar Call Button */
.lxt-navbar-cta-btn {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-left: 15px !important;
  border: 2px solid var(--primary-color) !important;
}

.lxt-navbar-cta-btn:hover {
  background: #e6951f !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(248, 163, 37, 0.3) !important;
  border-color: #e6951f !important;
}

/* Responsive adjustments for process section */
@media (max-width: 768px) {
  .lxt-process-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .lxt-process-icon {
    width: 60px;
    height: 60px;
  }
  
  .lxt-process-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .lxt-process-card h5 {
    font-size: 1rem;
  }
  
  .lxt-process-card p {
    font-size: 0.85rem;
  }
  
  .lxt-navbar-cta-btn {
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
    margin-left: 10px !important;
  }
} 