/* Ogden Custom Solutions CSS */
:root {
  /* Brand colors - always consistent */
  --primary-color: #33b0e0;
  --accent-color: #1186c9;
  --transition-speed: 0.7s;
}

/* Light mode (default or when user prefers light) */
@media (prefers-color-scheme: light) {
  :root {
    --secondary-color: #f8f9fa;
    --light-color: #2c3e50;
    --dark-color: #ffffff;
    --dark-color-alt: #f1f3f4;
    --text-color: #1a1a1a;
    --background-color: #ffffff;
    --card-background: #f8f9fa;
    --header-bg: rgba(8, 11, 26, 0.98);
    --header-scrolled-bg: rgba(6, 9, 23, 0.98);
    --hero-overlay: rgba(255, 255, 255, 0.7);
    --border-color: rgba(44, 62, 80, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
  }
}

/* Dark mode (when user prefers dark) */
@media (prefers-color-scheme: dark) {
  :root {
    --secondary-color: #0a1521;
    --light-color: #e0e6eb;
    --dark-color: #121f2e;
    --dark-color-alt: #0d1722;
    --text-color: #e5e5e5;
    --background-color: #0f1925;
    --card-background: #182532;
    --header-bg: rgba(8, 11, 26, 0.98);
    --header-scrolled-bg: rgba(6, 9, 23, 0.98);
    --hero-overlay: rgba(10, 21, 33, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
  }
  
  /* Dark mode specific overrides */
  .lead-magnet-header,
  .lead-magnet-header *,
  .lead-magnet-header h2,
  .lead-magnet-subtitle {
    color: #ffffff !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SF Pro Display', 'Arial', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-weight: 400;
  letter-spacing: 0.3px;
  padding-top: 50px; /* Space for sticky CTA bar */
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  /* Prevent blurry text on transforms */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-weight: 400;
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Smooth section transitions */
section {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-speed), opacity var(--transition-speed);
}

section:nth-child(odd) {
  background-color: var(--background-color);
}

section:nth-child(even) {
  background-color: var(--dark-color-alt);
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Simple mobile adjustments */
@media (max-width: 768px) {
  .sticky-cta-bar {
    padding: 8px 0;
  }
  
  .sticky-cta-content {
    flex-direction: column;
    gap: 8px;
  }
  
  .sticky-cta-text {
    font-size: 0.85rem;
  }
  
  .sticky-cta-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  /* Extra body padding on mobile for larger header */
  body {
    padding-top: 60px;
  }
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.sticky-cta-text {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta-text i {
  font-size: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.sticky-cta-btn {
  background: white;
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sticky-cta-btn:hover {
  background: var(--light-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-cta-close {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.sticky-cta-close:hover {
  opacity: 1;
}

/* Adjust body padding when sticky bar is visible */
body.sticky-cta-visible {
  padding-top: 50px;
}

/* Responsive sticky CTA - REMOVED DUPLICATE */

/* Header Styles */
header {
  background-color: var(--header-bg);
  box-shadow: 0 4px 15px var(--shadow-color);
  position: sticky;
  top: 54px;
  z-index: 1001;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
  background-color: var(--header-scrolled-bg);
  box-shadow: 0 5px 20px var(--shadow-color);
  padding: 2px 0;
}

header.scrolled .logo {
  height: 60px;
  transition: height 0.4s ease;
}

header.scrolled .banner-logo {
  height: 45px;
  max-width: 250px;
  transition: all 0.4s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: padding 0.4s ease;
}

header.scrolled .header-container {
  padding: 5px 0;
}

@media (min-width: 769px) {
  header.scrolled nav ul {
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: normal !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (min-width: 769px) {
  header.scrolled nav ul li {
    margin-left: 25px !important;
  }

  header.scrolled nav ul li:not(:first-child)::before {
    display: block !important;
  }

  header.scrolled nav ul li a {
    font-size: 1.1rem;
  }
}

/* Header minimization when scrolling */
header.minimized .banner-logo {
  height: 35px !important;
  max-width: 200px !important;
}

header.minimized .header-container {
  padding: 3px 0 !important;
}

@media (min-width: 769px) {
  header.minimized nav ul {
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: normal !important;
    width: auto !important;
    max-width: none !important;
  }

  header.minimized nav ul li {
    margin-left: 25px !important;
  }

  header.minimized nav ul li:not(:first-child)::before {
    display: block !important;
  }

  header.minimized nav ul li a {
    font-size: 0.95rem !important;
    padding: 8px 15px !important;
  }
}

/* Mobile Header Adjustments - REMOVED CONFLICTING RULES */

.logo {
  height: 180px;
  max-width: 400px;
  width: auto;
  transition: height 0.4s ease;
}

.banner-logo {
  height: 120px;
  max-width: 500px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 25px;
  position: relative;
}

/* White dot separators between nav items - desktop only */
@media (min-width: 769px) {
  nav ul li:not(:first-child)::before {
    content: '•';
    color: white;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.7;
    display: none; /* Hide dots by default when header is expanded */
  }
}

/* 2-row navigation when header is expanded (not scrolled/minimized) */
@media (min-width: 769px) {
  header:not(.scrolled):not(.minimized) nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px 25px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 600px;
  }
  
  header:not(.scrolled):not(.minimized) nav ul li {
    margin: 0;
    position: relative;
  }
  
  /* Hide dots in 2-row layout when header is expanded */
  header:not(.scrolled):not(.minimized) nav ul li:not(:first-child):not(:nth-child(5))::before {
    display: none;
  }
  
  /* First row: items 1-4 */
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(1) { grid-column: 1; grid-row: 1; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(2) { grid-column: 2; grid-row: 1; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(3) { grid-column: 3; grid-row: 1; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(4) { grid-column: 4; grid-row: 1; }
  
  /* Second row: items 5-8 */
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(5) { grid-column: 1; grid-row: 2; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(6) { grid-column: 2; grid-row: 2; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(7) { grid-column: 3; grid-row: 2; }
  header:not(.scrolled):not(.minimized) nav ul li:nth-child(8) { grid-column: 4; grid-row: 2; }
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.4s ease;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  text-align: center;
  white-space: nowrap;
}

nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  display: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 10px;
  transition: color 0.3s ease;
}

.mobile-menu:hover {
  color: var(--primary-color);
}


/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  color: white;
  padding: 160px 0 120px;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at center, rgba(8, 11, 26, 0.2) 0%, rgba(8, 11, 26, 0.4) 40%, rgba(8, 11, 26, 0.85) 100%),
    linear-gradient(135deg, rgba(10, 21, 33, 0.8) 0%, rgba(18, 31, 46, 0.8) 50%, rgba(15, 25, 37, 0.8) 100%), 
    url('../images/warehouse-hero-1200.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--background-color), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  transform: translateY(-75px);
  opacity: 1;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
  line-height: 1.1;
  color: var(--primary-color);
  text-transform: uppercase;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

/* Hover effects removed for mobile compatibility */

.btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Button Styles */
.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* btn-secondary hover removed for mobile compatibility */

.btn-secondary i {
  margin-right: 8px;
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .service-card:hover,
  .service-card:hover::before,
  .service-card:hover::after,
  .service-card.clickable:hover,
  .contact-card:hover,
  .contact-card:hover::before,
  .contact-card:hover::after,
  .testimonial-card:hover,
  .testimonial-card:hover::before,
  .testimonial-card:hover::after,
  .trust-badge:hover,
  .trust-badge-compact:hover,
  .faq-item:hover,
  .faq-question:hover,
  .back-to-top:hover,
  .btn:hover,
  .btn:hover::before,
  .btn:hover::after,
  .btn-primary:hover,
  .btn-secondary:hover,
  .mobile-menu:hover,
  .sticky-cta-btn:hover,
  .sticky-cta-close:hover,
  nav ul li a:hover,
  .footer-links a:hover,
  .copyright a:hover,
  .lead-magnet-btn:hover,
  .exit-intent-btn:hover,
  .timeline-item:hover,
  .success-phone-btn:hover,
  .modal-close:hover,
  .form-control:hover,
  .cta .btn:hover,
  .testimonial-btn:hover,
  .btn-next:hover,
  .btn-back:hover,
  .btn-submit:hover,
  .modal-body .btn-modal:hover,
  a.btn:hover,
  button.btn:hover,
  .hero-cta-buttons .btn:hover {
    transform: none !important;
    box-shadow: none !important;
    opacity: inherit !important;
    background: inherit !important;
    color: inherit !important;
    border: inherit !important;
    scale: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  .service-card:hover .service-icon,
  .service-card:hover .click-indicator,
  .service-card.clickable:hover .click-indicator {
    transform: none !important;
    opacity: inherit !important;
    color: inherit !important;
  }
}

@media (max-width: 768px) {
  /* Remove hover indicators and actions */
  .click-indicator {
    display: none !important;
  }
  
  .contact-action {
    display: none !important;
  }
  
  /* Hover effects now handled by separate @media (hover: none) rule above */
  
  /* Improve font rendering on mobile */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Typography adjustments for mobile */
  h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2rem !important;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem !important;
  }
  
  .gigantic-title {
    font-size: 2.2rem !important;
  }
  
  /* Force disable hover pseudo-elements on mobile */
  .service-card::before,
  .contact-card::before,
  .testimonial-card::before {
    display: none !important;
  }
  
  /* Disable button hover effects */
  .btn:hover,
  .btn:hover::before,
  .btn-secondary:hover,
  .mobile-menu:hover {
    transform: none !important;
    box-shadow: inherit !important;
    background: inherit !important;
    color: inherit !important;
  }
  
  /* Hero section mobile adjustments */
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
    margin: 15px 0 20px !important;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  /* Container padding for mobile */
  .container {
    padding: 0 20px !important;
  }
  
  /* Section padding adjustments */
  .services, .about, .testimonials, .faq {
    padding: 60px 0 !important;
  }
  
  .why-ocs {
    padding: 50px 0 !important;
  }
}


/* Services Section */
.services {
  padding: 120px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto 0;
  color: #aabbd0;
}

/* Urgency Elements */
.urgency-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.urgency-banner i {
  font-size: 1.1rem;
  animation: tick 1s ease-in-out infinite;
}

@keyframes tick {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.btn-urgent {
  position: relative;
  overflow: hidden;
}

.btn-urgent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.form-urgency {
  text-align: center;
  margin-top: 15px;
  color: #4CAF50 !important;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-urgency i {
  color: #4CAF50;
  font-size: 1rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: rgba(51, 176, 224, 0.05);
  border: 1px solid rgba(51, 176, 224, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
}

.trust-badge:hover {
  background: rgba(51, 176, 224, 0.1);
  border-color: rgba(51, 176, 224, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(51, 176, 224, 0.2);
}

.trust-badge i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 15px;
  }
  
  .trust-badge {
    min-width: 120px;
    padding: 12px 15px;
  }
  
  .trust-badge span {
    font-size: 0.8rem;
  }
  
  /* Services grid mobile optimization */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
  
  .service-card {
    padding: 25px 20px !important;
    margin: 0 !important;
  }
  
  .service-card h3 {
    font-size: 1.3rem !important;
    margin-bottom: 15px !important;
  }
  
  .service-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  .service-icon {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
  
  /* Why OCS cards mobile */
  .why-ocs-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .why-ocs-card {
    padding: 25px 20px !important;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.services-grid.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background-color: var(--card-background);
  border-radius: 16px;
  box-shadow: 0 15px 30px var(--shadow-color);
  padding: 40px 40px 80px 40px;
  transition: all 0.5s ease;
  color: var(--text-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

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

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

/* Clickable Service Cards */
.service-card.clickable {
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.clickable:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(51, 176, 224, 0.3);
}

.service-card.clickable:active {
  transform: translateY(-10px) rotateY(10deg) scale(0.98);
}

.click-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(51, 176, 224, 0.15);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 176, 224, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(51, 176, 224, 0.2);
  white-space: nowrap;
}

.service-card.clickable:hover .click-indicator {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
  background: rgba(51, 176, 224, 0.25);
  border-color: var(--primary-color);
}

/* Lead Magnet Modal Styles */
.lead-magnet-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Calculator Icon Wrapper */
.calculator-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.urgency-countdown-bar {
  width: 100%;
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 0 0;
  margin: 0;
  position: relative;
  z-index: 10;
}

@keyframes urgentPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.6);
  }
}

/* Social Proof Section */
.lead-magnet-proof {
  background: rgba(51, 176, 224, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid rgba(51, 176, 224, 0.2);
}

.proof-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Progress Bar */
.form-progress {
  margin-bottom: 25px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

.progress-text {
  font-size: 0.85rem;
  color: #e0e6eb;
  font-weight: 500;
}

/* CTA Benefits */
.cta-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
  padding: 0 10px;
}

.benefit-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: white;
  white-space: nowrap;
}

.benefit-check i {
  color: #4CAF50;
  font-size: 0.9rem;
  min-width: 16px;
}

@media (max-width: 768px) {
  .proof-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-benefits {
    flex-direction: column;
    gap: 10px;
  }
}

.lead-magnet-modal.active {
  opacity: 1;
  visibility: visible;
}

.lead-magnet-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--card-background);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) rotateY(-90deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.lead-magnet-modal .modal-body {
  scroll-behavior: auto !important;
}

.lead-magnet-modal.active .modal-content {
  transform: scale(1) rotateY(0deg);
}

.lead-magnet-header {
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.lead-magnet-header-compact {
  padding: 20px 30px 15px;
}

.lead-magnet-header-compact h2 {
  font-size: 1.8rem !important;
  margin: 10px 0 8px !important;
}

.lead-magnet-header-compact .lead-magnet-subtitle {
  font-size: 1rem !important;
  margin: 0 !important;
}

.lead-magnet-header h2 {
  margin: 15px 0 10px;
  font-size: 2.2rem;
  font-weight: 700;
}

.lead-magnet-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.5;
  margin: 0;
}

/* Calculator Confirmation Styles */
.confirmation-details {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.detail-item {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item strong {
  color: var(--text-color);
  font-weight: 700;
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: var(--card-background);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--background-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.lead-magnet-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 25px 30px;
  background: rgba(51, 176, 224, 0.05);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-color);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 20px;
}

.benefit-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

.lead-magnet-form {
  padding: 25px 30px 30px;
}

.lead-magnet-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 0;
}

.lead-magnet-form .form-group {
  margin-bottom: 20px;
}

.lead-magnet-form label {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.lead-magnet-form .form-control {
  background-color: var(--background-color);
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.lead-magnet-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 176, 224, 0.1);
  background-color: var(--card-background);
}

.lead-magnet-cta {
  text-align: center;
  margin-top: 25px;
}

.lead-magnet-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(51, 176, 224, 0.3);
}

.lead-magnet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(51, 176, 224, 0.4);
}

.lead-magnet-btn i {
  font-size: 1.2rem;
}

.privacy-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.privacy-note i {
  color: var(--primary-color);
}

/* Responsive lead magnet modal */
@media (max-width: 768px) {
  .lead-magnet-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .lead-magnet-header {
    padding: 25px 20px 15px;
  }
  
  .lead-magnet-header h2 {
    font-size: 1.8rem;
  }
  
  .lead-magnet-benefits {
    padding: 20px;
  }
  
  .lead-magnet-form {
    padding: 20px;
  }
  
  .lead-magnet-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .urgency-countdown-bar {
    font-size: 0.95rem;
    padding: 12px 15px;
    letter-spacing: 0.3px;
  }
}

/* Exit Intent Modal Styles */
.exit-intent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1003;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Exit Icon Container */
.exit-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.value-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

/* Offer Highlights */
.offer-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.highlight-item span {
  color: #e0e6eb;
  font-size: 0.85rem;
}

/* Form Urgency Timer */
.form-urgency-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.form-urgency-timer i {
  animation: pulse 1.5s infinite;
}

/* Exit Guarantees */
.exit-guarantees {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #e0e6eb;
}

.guarantee-item i {
  color: #4CAF50;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .offer-highlights {
    gap: 12px;
  }
  
  .highlight-item {
    padding: 10px;
  }
  
  .exit-guarantees {
    flex-direction: column;
    gap: 10px;
  }
}

.exit-intent-modal.active {
  opacity: 1;
  visibility: visible;
}

.exit-intent-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  background: var(--card-background);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.7) rotateX(-90deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 3px solid #f44336;
}

.exit-intent-modal.active .modal-content {
  transform: scale(1) rotateX(0deg);
}

.exit-intent-header {
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  position: relative;
}

.exit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  75% { transform: rotate(-15deg); }
}

.exit-intent-header h2 {
  margin: 0 0 15px;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exit-subtitle {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
}

.exit-intent-offer {
  display: flex;
  gap: 20px;
  padding: 25px 30px;
  background: rgba(244, 67, 54, 0.05);
  align-items: center;
}

.offer-badge {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  min-width: 100px;
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.badge-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.badge-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.offer-details {
  flex: 1;
}

.offer-details h3 {
  color: var(--text-color);
  margin: 0 0 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
}

.offer-benefits i {
  color: #4CAF50;
  font-size: 1rem;
  min-width: 16px;
}

.exit-intent-form {
  padding: 25px 30px 30px;
}

.exit-intent-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.exit-intent-form .form-control {
  background-color: var(--background-color);
  border: 2px solid var(--border-color);
  color: var(--text-color);
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.exit-intent-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 176, 224, 0.1);
  background-color: var(--card-background);
}

.exit-intent-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  width: 100%;
  margin-bottom: 15px;
}

.exit-intent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.exit-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.exit-disclaimer i {
  color: #4CAF50;
}

/* Responsive exit intent modal */
@media (max-width: 768px) {
  .exit-intent-offer {
    flex-direction: column;
    text-align: center;
  }
  
  .exit-intent-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .exit-intent-header {
    padding: 25px 20px 15px;
  }
  
  .exit-intent-header h2 {
    font-size: 1.8rem;
  }
  
  .exit-intent-form {
    padding: 20px;
  }
}

/* Lead Magnet Success Styles */
.lead-magnet-success {
  text-align: center;
  padding: 40px 30px;
}

.success-icon {
  margin-bottom: 20px;
}

.success-icon i {
  font-size: 4rem;
  color: #4CAF50;
  animation: successPulse 1.5s ease-out;
}

@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.lead-magnet-success h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2rem;
}

.lead-magnet-success p {
  color: var(--text-color);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.next-steps {
  background: rgba(51, 176, 224, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  text-align: left;
}

.next-steps h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.next-steps li i {
  color: var(--primary-color);
  min-width: 20px;
}

.next-steps li:last-child {
  margin-bottom: 0;
}

/* Success Timeline */
.success-timeline {
  background: rgba(51, 176, 224, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  border-left: 4px solid var(--primary-color);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.timeline-item.priority {
  border-left: 3px solid #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.timeline-item.priority i {
  color: #ff6b35;
}

.timeline-item div {
  flex: 1;
}

.timeline-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.timeline-item span {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Success CTA */
.success-cta {
  text-align: center;
  margin: 25px 0 20px;
  padding: 20px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.success-cta p {
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 1rem;
}

.success-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.success-phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  color: white;
  text-decoration: none;
}

/* Success Value Reminder */
.success-value-reminder {
  margin: 20px 0;
}

.value-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.value-box i {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-box div {
  flex: 1;
}

.value-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.value-box span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Service Modal Styles */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--card-background);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.7) rotateY(-90deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.service-modal.active .modal-content {
  transform: scale(1) rotateY(0deg);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--primary-color);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  padding: 60px 40px 40px;
  color: var(--text-color);
  overflow-y: auto;
  max-height: 80vh;
}

.modal-body h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.modal-body .service-icon-large {
  font-size: 4rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  display: block;
}

.modal-body .service-details {
  line-height: 1.8;
  font-size: 1.1rem;
}

.modal-body .service-details h3 {
  color: var(--primary-color);
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.modal-body .service-details ul {
  margin: 15px 0 15px 20px;
}

.modal-body .service-details li {
  margin-bottom: 8px;
}

.modal-body .cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
  text-align: center;
}

.modal-body .cta-section h3 {
  color: white;
  margin-bottom: 15px;
}

.modal-body .cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.modal-body .btn-modal {
  background: white;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.modal-body .btn-modal:hover {
  background: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




.service-card p {
  margin-top: auto;
  line-height: 1.7;
  font-size: 1.05rem;
}


.step {
  text-align: center;
  flex: 1;
  min-width: 280px;
  margin: 20px;
  padding: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: calc(var(--index) * 0.2s);
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.step h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.step p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 500px;
  height: 500px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background-color: var(--card-background);
  padding: 15px;
}

/* Redesigned Contact Section */
.contact-redesigned {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--dark-color-alt) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


.contact-main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-intro-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: fit-content;
}

.contact-intro {
  padding-right: 20px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(51, 176, 224, 0.3);
}

.contact-badge i {
  font-size: 1rem;
}

.contact-intro h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-intro p {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}


.contact-form-wrapper {
  background: var(--card-background);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 20px 20px 0 0;
}

/* Contact Info Row - Legacy mobile support */
.contact-info-row {
  display: none;
}

.contact-card {
  background: var(--card-background);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

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

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow-color);
  border-color: rgba(51, 176, 224, 0.3);
}

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

.contact-icon {
  background: rgba(51, 176, 224, 0.1);
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.contact-card:hover .contact-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.contact-card:hover .contact-icon i {
  color: white;
}

.contact-details {
  flex: 1;
}

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

.contact-details p {
  color: var(--text-color);
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-action {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card:hover .contact-action {
  opacity: 1;
}

/* Trust Badges Compact */
.trust-badges-compact {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 0;
  margin-top: 50px;
  border-top: 1px solid var(--border-color);
}

.trust-badge-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.trust-badge-compact:hover {
  background: rgba(51, 176, 224, 0.05);
  transform: translateY(-2px);
}

.trust-badge-compact i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.trust-badge-compact span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  
  .contact-main-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-intro {
    padding-right: 0;
    text-align: center;
  }
  
  .contact-stats {
    justify-content: center;
  }
  
  .contact-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .contact-form-wrapper {
    margin-top: 0;
  }
  
}

@media (max-width: 768px) {
  .contact-intro h2 {
    font-size: 2.2rem;
  }
  
  .contact-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  /* Reorder contact section on mobile: form first, then intro/cards */
  .contact-main-section {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form-wrapper {
    order: 2;
    margin-bottom: 40px;
    width: 100%;
    max-width: none;
  }
  
  /* Only show the intro part first, hide cards within intro section */
  .contact-intro-section {
    order: 1;
    margin-bottom: 40px;
  }
  
  /* Hide original contact cards on mobile */
  .contact-intro-section .contact-cards-grid {
    display: none;
  }
  
  /* Show mobile contact cards after form with proper order */
  .contact-cards-grid-mobile {
    order: 3;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  /* Hide redundant trust indicators on mobile since stats are nearby */
  .form-trust-indicators {
    display: none !important;
  }
  
  .contact-form-wrapper .form-trust-indicators {
    display: none !important;
  }
  
  /* Hide redundant step header text on mobile */
  .step-header {
    display: none !important;
  }
  
  .form-step .step-header {
    display: none !important;
  }
  
  .contact-form-wrapper .step-header {
    display: none !important;
  }
  
  /* Make form buttons span full width on mobile */
  .contact-form-wrapper .btn-next,
  .contact-form-wrapper .btn-submit,
  .contact-form-wrapper .btn-back {
    max-width: none !important;
    width: 100% !important;
  }
  
  /* Form input improvements for mobile */
  .form-control {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 15px !important;
  }
  
  .form-group {
    margin-bottom: 20px !important;
  }
  
  .form-group label {
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
  }
  
  /* Contact stats mobile */
  .contact-stats {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
  }
  
  .stat {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  
  /* Testimonials mobile */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .testimonial-card {
    padding: 25px 20px !important;
  }
  
  /* FAQ mobile styles handled above */
  
  .faq-question h3 {
    font-size: 1.1rem !important;
    padding-right: 40px !important;
  }
  
  /* FAQ CTA mobile */
  .faq-cta-btn {
    font-size: 1rem !important;
    padding: 16px 24px !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  
  .trust-badges-compact {
    gap: 20px;
  }
  
  .trust-badge-compact {
    min-width: 100px;
    padding: 12px;
  }
}

/* Hide mobile contact cards grid on desktop screens */
.contact-cards-grid-mobile {
  display: none;
}

/* Legacy Contact Section (keep for backwards compatibility) */
.contact {
  background-color: var(--dark-color);
  padding: 80px 0;
  color: #ffffff;
}

/* Form Trust Indicators */
.form-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(51, 176, 224, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(51, 176, 224, 0.2);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.trust-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.trust-item span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .form-trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-back {
    flex: 1;
  }
  
  .timeline-item {
    padding: 10px;
  }
  
  .timeline-item:hover {
    transform: none;
  }
  
  /* Contact form responsive adjustments */
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .form-trust-indicators {
    padding: 15px;
  }
}

/* Multi-Step Form */
.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(51, 176, 224, 0.2);
}

.step-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(51, 176, 224, 0.2);
  opacity: 0.9;
}

.step-indicator .step-number {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.7rem;
}

.step-indicator .step-text {
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-next, .btn-back, .btn-submit {
  flex: 1;
  width: 100%;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: none;
  font-size: 1rem;
}

.btn-next {
  background: var(--primary-color);
  color: white;
}

.btn-next:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.btn-back {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex: 0 0 120px;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  font-size: 1.1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Field Validation */
.field-validation {
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.field-validation.success {
  color: #4CAF50;
}

.field-validation.error {
  color: #f44336;
}

.form-control.valid {
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control.invalid {
  border-color: #f44336;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* Form Footer */
.form-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(76, 175, 80, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  margin-bottom: 20px;
}

.guarantee-badge i {
  color: #4CAF50;
  font-size: 1.5rem;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
}

.guarantee-text strong {
  color: #4CAF50;
  font-size: 1rem;
  margin-bottom: 2px;
}

.guarantee-text span {
  color: #e0e6eb;
  font-size: 0.9rem;
}

.testimonial-snippet {
  text-align: center;
  background: rgba(51, 176, 224, 0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.quote-mini {
  color: white;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.author-mini {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.contact-icon {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-right: 20px;
  margin-top: 2px;
  min-width: 24px;
  display: flex;
  justify-content: center;
}

.email-list p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #e0e6eb;
  transition: color 0.3s ease;
}

.email-list p:hover {
  color: var(--primary-color);
  cursor: pointer;
}

.email-list p:last-child {
  margin-bottom: 0;
}

.contact-info-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info-item p {
  color: #e0e6eb;
  line-height: 1.5;
  margin-bottom: 4px;
}

.clickable-contact {
  cursor: pointer;
  position: relative;
}

.clickable-contact:hover {
  background-color: rgba(51, 176, 224, 0.1) !important;
  transform: translateX(8px);
  border-left-color: var(--accent-color);
}

.contact-action {
  background: rgba(51, 176, 224, 0.15);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 176, 224, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-block;
  text-align: center;
}

.clickable-contact:hover .contact-action {
  opacity: 1;
  background: rgba(51, 176, 224, 0.25);
  border-color: var(--primary-color);
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #ffffff;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #354658;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #223040;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 176, 224, 0.1);
  background-color: #2a3a4a;
  transform: translateY(-1px);
}

.form-control:hover {
  border-color: #4a5f78;
  background-color: #2a3a4a;
}

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


/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.copyright a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--accent-color);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: rgba(51, 176, 224, 0.1);
  border: 1px solid rgba(51, 176, 224, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.security-badge i {
  font-size: 1rem;
}

/* Page Banner */
.page-banner {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.2rem;
  margin: 0;
}

/* About Page Styles */
.about-page {
  padding: 60px 0;
}

.features-list {
  list-style: none;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  margin-bottom: 20px;
}

.features-list li i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 15px;
  min-width: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  color: #ffffff;
}

.value-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Call to Action */
.cta {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta .btn {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn:hover {
  background-color: var(--light-color);
}

/* Quote Page Styles */
.quote-page {
  padding: 60px 0;
}

.quote-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.quote-info {
  flex: 1;
  min-width: 300px;
}

.service-highlights {
  margin-top: 30px;
}

.service-highlights ul {
  list-style: none;
  margin-top: 15px;
}

.service-highlights li {
  margin-bottom: 10px;
}

.service-highlights i {
  color: var(--primary-color);
  margin-right: 10px;
}

.contact-info-box {
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  color: #ffffff;
}

.contact-info-box h3 {
  margin-bottom: 15px;
}

.contact-info-box p {
  margin-bottom: 10px;
}

.contact-info-box i {
  color: var(--primary-color);
  margin-right: 10px;
}

.quote-form {
  flex: 2;
  min-width: 300px;
}

.quote-form form {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  color: #ffffff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

small {
  display: block;
  color: #aabbd0;
  margin-top: 5px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-container input {
  margin-right: 10px;
}

/* Employment Page Styles */
.employment-page {
  padding: 60px 0;
}

.employment-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.employment-info {
  flex: 1;
  min-width: 300px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  margin-bottom: 10px;
}

.benefits-list i {
  color: var(--primary-color);
  margin-right: 10px;
}

.job-listings {
  margin: 30px 0;
}

.job-card {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  margin-bottom: 20px;
  color: #ffffff;
}

.job-card h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.job-type {
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
}

.job-description {
  margin-bottom: 20px;
}

.job-description h5 {
  margin: 15px 0 10px;
}

.job-description ul {
  margin-left: 20px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.general-application {
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  margin-top: 30px;
  color: #ffffff;
}

.general-application h3 {
  margin-bottom: 15px;
}

.general-application p {
  margin-bottom: 20px;
}

.application-form {
  flex: 2;
  min-width: 300px;
}

.application-form form {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  color: #ffffff;
}

.file-upload input {
  padding: 10px 0;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: var(--dark-color-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: var(--card-background);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 30px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 16px 16px 0 0;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.testimonial-author span {
  color: #aabbd0;
  font-size: 0.95rem;
}

.testimonial-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.testimonial-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(51, 176, 224, 0.3);
}

.testimonial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(51, 176, 224, 0.4);
  color: white;
  text-decoration: none;
}

.testimonial-btn i {
  font-size: 0.9rem;
}

/* Why OCS Section */
.why-ocs {
  padding: 120px 0;
  background-color: var(--dark-color);
}

.gigantic-title {
  font-size: 5rem !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px !important;
}

.why-ocs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-ocs-card {
  width: 100%;
}

/* Responsive adjustments for gigantic title */
@media (max-width: 768px) {
  .gigantic-title {
    font-size: 3rem !important;
    letter-spacing: -1px !important;
  }
}


/* FAQ Section */
.faq {
  padding: 120px 0;
  background-color: var(--background-color);
}

.faq-container {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.faq-item {
  background-color: var(--card-background);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px var(--shadow-color);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.faq-item:hover {
  box-shadow: 0 8px 25px var(--shadow-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--card-background);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(51, 176, 224, 0.1);
}

.faq-question h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  min-width: 20px;
  margin-left: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #aabbd0;
  line-height: 1.7;
  margin: 0;
  padding-top: 20px;
}

/* FAQ CTA Section */
.faq-cta-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.faq-cta-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(51, 176, 224, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  max-width: 600px;
  text-align: left;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(51, 176, 224, 0.4);
}

.faq-cta-btn i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Business Status Widget */
.business-status {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: rgba(51, 176, 224, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(51, 176, 224, 0.3);
  width: fit-content;
}

.status-indicator {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
}

.status-indicator.open {
  background-color: #4CAF50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-indicator.closed {
  background-color: #f44336;
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

.status-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
}

.status-text.open {
  color: #4CAF50;
}

.status-text.closed {
  color: #f44336;
}

.status-text.christmas {
  color: #f44336; /* Red for "Closed" */
}

.status-text.christmas .christmas-greeting {
  color: #228B22; /* Green for "- Merry Christmas" */
}

.status-indicator.christmas {
  background-color: #f44336; /* Red dot */
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(51, 176, 224, 0.3);
  font-size: 1.2rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(51, 176, 224, 0.4);
}

/* Responsive Images */
@media (max-width: 768px) {
  .hero {
    background: 
      radial-gradient(ellipse at center, rgba(8, 11, 26, 0.2) 0%, rgba(8, 11, 26, 0.4) 40%, rgba(8, 11, 26, 0.85) 100%),
      linear-gradient(135deg, rgba(10, 21, 33, 0.8) 0%, rgba(18, 31, 46, 0.8) 50%, rgba(15, 25, 37, 0.8) 100%), 
      url('../images/warehouse-hero-800.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    overflow: visible !important;
  }
  
  nav {
    position: relative !important;
    overflow: visible !important;
  }
  
  nav ul {
    display: none !important;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(8, 11, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
    z-index: 9999;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  nav ul.show {
    display: block !important;
  }

  nav ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li::before {
    display: none;
  }

  nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  nav ul li a:hover,
  nav ul li a:active {
    background: rgba(51, 176, 224, 0.2);
    color: var(--primary-color);
  }
  
  /* Mobile menu close button removed - using standard close behavior */

  .mobile-menu {
    display: block;
    color: white;
    font-size: 1.5rem;
    padding: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .header-container {
    padding: 20px 20px;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-container {
    flex: 1;
  }

  .header-container {
    padding: 10px 0;
  }

  .logo {
    height: 100px;
    max-width: 280px;
  }
  
  .banner-logo {
    height: 80px;
    max-width: 300px;
  }

  .hero {
    padding: 20px 0 60px;
    min-height: 100vh;
  }
  
  .hero-content {
    transform: translateY(-75px) !important;
    padding-top: 20px;
  }

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

  .services, .about, .contact {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .quote-content, .employment-content {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Light mode specific enhancements */
@media (prefers-color-scheme: light) {
  .hero {
    background: 
      radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 40%, rgba(255, 255, 255, 0.3) 100%),
      linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(241, 243, 244, 0.7) 50%, rgba(233, 236, 239, 0.7) 100%), 
      url('../images/warehouse-hero-1200.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
  
  .hero h1 {
    color: #1a1a1a !important;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
    font-weight: 800 !important;
  }
  
  .hero-subtitle {
    color: var(--primary-color) !important;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
    font-weight: 900 !important;
  }
  
  .hero p {
    color: #2c3e50 !important;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
    font-weight: 500 !important;
    font-size: 1.6rem !important;
  }
  
  /* Improve text readability in light mode */
  .about-text p {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .testimonial-content p {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .faq-question h3 {
    color: #1a1a1a !important;
    font-weight: 600 !important;
  }
  
  .faq-answer p {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .service-card p {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .benefit-item span {
    color: #2c3e50 !important;
    font-weight: 600 !important;
  }
  
  .offer-benefits li {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .trust-badge span {
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }
  
  .section-title p {
    color: #4a5568 !important;
    font-weight: 500 !important;
  }
  
  /* Form and contact improvements for light mode */
  .contact-info h3,
  .contact-info h4 {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
  }
  
  .contact-info p {
    color: #e0e6eb !important;
    font-weight: 500 !important;
  }
  
  /* Modal text improvements */
  .lead-magnet-form label {
    color: #1a1a1a !important;
    font-weight: 600 !important;
  }
  
  .exit-intent-form .form-control {
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
  }
  
  .lead-magnet-form .form-control {
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
  }
  
  /* Fix all text in lead magnet modal for better contrast */
  .lead-magnet-modal .stat-label {
    color: #333 !important;
    font-weight: 600 !important;
  }
  
  .lead-magnet-modal .stat-item {
    color: #333 !important;
  }
  
  .lead-magnet-modal .benefit-item {
    color: #333 !important;
  }
  
  .lead-magnet-modal .benefit-item span {
    color: #333 !important;
    font-weight: 600 !important;
  }
  
  .lead-magnet-modal .progress-text {
    color: #333 !important;
    font-weight: 600 !important;
  }
  
  .lead-magnet-modal .cta-benefits {
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
  }
  
  .lead-magnet-modal .benefit-check {
    color: #ffffff !important;
  }
  
  .lead-magnet-modal .benefit-check span {
    color: #ffffff !important;
    font-weight: 500 !important;
  }
  
  /* Lead magnet proof section */
  .lead-magnet-proof {
    background: rgba(51, 176, 224, 0.08) !important;
  }
  
  /* Make sure all modal text is readable except header */
  .lead-magnet-modal p:not(.lead-magnet-subtitle),
  .lead-magnet-modal span:not(.stat-number):not(.lead-magnet-header *) {
    color: #333 !important;
  }
  
  /* Fix the lead magnet button text contrast */
  .lead-magnet-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  }
  
  .lead-magnet-btn:hover {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
  }
  
  /* Fix the Free Cost Calculator button on landing page */
  .btn-secondary {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    border: none !important;
    font-weight: 600 !important;
  }
  
  .btn-secondary:hover {
    background: #ffffff !important;
    color: #333 !important;
    border: none !important;
    transform: translateY(-2px) !important;
  }
  
  /* Fix calculator modal heading text for light mode */
  .lead-magnet-header,
  .lead-magnet-header h2,
  .lead-magnet-subtitle {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
  }
  
  
  .offer-details h3 {
    color: #1a1a1a !important;
    font-weight: 600 !important;
  }
  
  /* Service card headings */
  .service-card h3 {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
  }
  
  /* Urgency banner text */
  .urgency-banner {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-weight: 700 !important;
  }
  
  /* Why OCS section text */
  .why-ocs-card p {
    color: #2c3e50 !important;
    font-weight: 500 !important;
  }
  
  .section-title h2 {
    color: var(--primary-color);
    text-shadow: none;
  }
  
  .service-card:hover {
    box-shadow: 0 20px 40px rgba(51, 176, 224, 0.15);
    border-color: rgba(51, 176, 224, 0.3);
  }
  
  .testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(51, 176, 224, 0.1);
    border-color: rgba(51, 176, 224, 0.2);
  }
  
  .faq-item:hover {
    box-shadow: 0 8px 25px rgba(51, 176, 224, 0.15);
    border-color: rgba(51, 176, 224, 0.3);
  }
  
  .gigantic-title {
    text-shadow: 0 2px 8px rgba(51, 176, 224, 0.2);
  }
  
  /* Keep footer dark in light mode to match branding */
  footer {
    background-color: #121f2e !important;
    color: white !important;
  }
  
  .footer-links a {
    color: #ccc !important;
  }
  
  .footer-links a:hover {
    color: var(--primary-color) !important;
  }
  
  /* Keep contact section dark in light mode for better readability */
  .contact {
    background-color: #121f2e !important;
    color: white !important;
  }
  
  .contact-info h3,
  .contact-info h4 {
    color: var(--primary-color) !important;
  }
  
  .contact-info p {
    color: #e0e6eb !important;
  }
  
  .contact-info-item {
    background-color: rgba(255, 255, 255, 0.02) !important;
  }
  
  .contact-info-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
  }
  
  /* Keep header nav text white for readability against dark header */
  nav ul li a {
    color: #ffffff !important;
  }
  
  nav ul li a:hover {
    color: var(--primary-color) !important;
  }
  
  /* Maintain nav text sizing in light mode */
  header.scrolled nav ul li a {
    font-size: 1.1rem !important;
  }
  
  /* Improve text contrast in light mode */
  .service-links {
    color: #333 !important;
  }
  
  .service-links a {
    color: #333 !important;
  }
  
  .privacy-note,
  .exit-disclaimer {
    color: #333 !important;
    opacity: 0.9 !important;
  }
  
  /* Ensure all small text has good contrast */
  small,
  .small-text {
    color: #555 !important;
  }
  
  /* Form labels and help text */
  .form-group small {
    color: #666 !important;
  }
  
  /* Contact card text improvements */
  .contact-card p {
    color: #333 !important;
  }
  
  /* Multi-step form improvements for light mode */
  .form-step .step-header h3 {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
  }
  
  .form-group label {
    color: #1a1a1a !important;
    font-weight: 600 !important;
  }
  
  .form-control {
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    border-color: #d1d5db !important;
  }
  
  .form-control::placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
  }
  
  .form-control:focus {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
  }
  
  /* Contact form wrapper text */
  .contact-form-wrapper h3 {
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }
  
  .contact-form-wrapper p {
    color: #374151 !important;
    font-weight: 500 !important;
  }
  
  .contact-form-wrapper small {
    color: #6b7280 !important;
    font-weight: 500 !important;
  }
  
  /* Contact stats and form elements */
  .contact-stats .stat-label {
    color: #4b5563 !important;
    font-weight: 600 !important;
  }
  
  .contact-stats .stat-number {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
  }
  
  /* Trust indicators text */
  .form-trust-indicators .trust-item span {
    color: #374151 !important;
    font-weight: 600 !important;
  }
  
  /* Form footer elements */
  .form-footer .guarantee-text strong {
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }
  
  .form-footer .guarantee-text span {
    color: #4b5563 !important;
    font-weight: 500 !important;
  }
  
  .testimonial-snippet .quote-mini {
    color: #374151 !important;
    font-weight: 600 !important;
  }
  
  .testimonial-snippet .author-mini {
    color: #6b7280 !important;
    font-weight: 500 !important;
  }
  
  /* Contact intro section */
  .contact-intro h2 {
    color: #1a1a1a !important;
    font-weight: 800 !important;
  }
  
  .contact-intro p {
    color: #374151 !important;
    font-weight: 500 !important;
  }
  
  .contact-badge span {
    color: #ffffff !important;
    font-weight: 700 !important;
  }
  
  /* Contact cards */
  .contact-card h4 {
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }
  
  .contact-action {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
  }
  
  /* Business status */
  .status-text {
    color: #374151 !important;
    font-weight: 600 !important;
  }
  
  .status-text.open {
    color: #059669 !important;
    font-weight: 700 !important;
  }
  
  .status-text.closed {
    color: #dc2626 !important;
    font-weight: 700 !important;
  }
  
  /* Calculator confirmation modal */
  .confirmation-details {
    background-color: #f8f9fa !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 20px 0 !important;
  }
  
  .detail-item {
    color: #374151 !important;
    font-weight: 500 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
  
  .detail-item:last-child {
    border-bottom: none !important;
  }
  
  .detail-item strong {
    color: #1a1a1a !important;
    font-weight: 700 !important;
  }
  
  .confirmation-actions {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    margin-top: 25px !important;
  }
  
  .btn-secondary {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
  }
  
  .btn-secondary:hover {
    background: #e5e7eb !important;
    color: #1f2937 !important;
    border-color: #9ca3af !important;
  }
  
  /* FAQ and general content text */
  .faq-answer p,
  .about-text p,
  .service-details p {
    color: var(--text-color) !important;
  }
  
  /* Mobile hero positioning fix */
  @media (max-width: 768px) {
    .hero {
      padding: 20px 0 60px !important;
    }
    
    .hero-content {
      transform: translateY(-75px) !important;
      padding-top: 20px !important;
    }
    
    .hero h1 {
      font-size: 2.2rem !important;
      margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
      font-size: 1.8rem !important;
      margin-bottom: 20px !important;
    }
    
    .hero p {
      font-size: 1.4rem !important;
      margin-bottom: 30px !important;
    }
  }

  /* Mobile modal positioning */
  .service-modal,
  .lead-magnet-modal,
  .exit-intent-modal {
    padding-top: 180px; /* More space on mobile due to different header behavior */
    padding-bottom: 40px;
  }
  
  /* Make modals slightly smaller and better centered on mobile */
  .service-modal .modal-content,
  .lead-magnet-modal .modal-content,
  .exit-intent-modal .modal-content {
    width: 95%;
    max-height: 85vh;
    margin: 0 auto;
  }
  
  /* Adjust modal body padding for mobile */
  .service-modal .modal-body,
  .lead-magnet-modal .modal-body,
  .exit-intent-modal .modal-body {
    padding: 40px 20px 20px;
    max-height: 75vh;
  }
}