/*
 * Service Pages - Centralized Styles
 * Standardized hero sections and components for all service pages
 */

/* Selection Colors */
::selection {
  background: #C1272D;
  color: white;
}
::-moz-selection {
  background: #C1272D;
  color: white;
}

/* Service Hero Section - Standardized across all service pages */
.service-hero-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  padding: 8rem 0 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.service-hero-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: left !important; /* Override any Webflow center alignment */
}

.service-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  margin-left: 0;
}

.service-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.service-hero-description {
  font-size: 1.25rem;
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Content Section */
.service-content-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
  min-height: 100vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.service-content-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Wide Screen Compatibility */
@media (min-width: 1920px) {
  .service-content-wrapper {
    max-width: 1800px;
    padding: 0 4rem;
  }
  
  .why-choose-container {
    max-width: 1800px;
    padding: 0 4rem;
  }
  
  .services-section .services-header,
  .services-section .services-grid {
    max-width: 1800px;
    padding: 0 4rem;
  }
}

@media (min-width: 2560px) {
  .service-content-wrapper {
    max-width: 2000px;
    padding: 0 5rem;
  }
  
  .why-choose-container {
    max-width: 2000px;
    padding: 0 5rem;
  }
  
  .services-section .services-header,
  .services-section .services-grid {
    max-width: 2000px;
    padding: 0 5rem;
  }
}

/* Service Intro */
.service-intro {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.service-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.service-intro p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

/* Services Section Styles */
.services-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fdfdfd 0%, #f8f9fa 50%, #f5f5f5 100%);
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.services-section .services-header {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.services-section .services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.services-header p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

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

.service-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #C1272D;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C1272D 0%, #A81F24 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: white;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.service-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.service-link {
  color: #C1272D;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #A81F24;
  gap: 0.75rem;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-hero-section {
    padding: 6rem 0 4rem 0;
    min-height: 60vh;
  }
  
  .service-hero-content {
    padding: 0 2rem;
    text-align: left !important; /* Ensure left alignment on mobile too */
  }
  
  .service-hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .service-hero-description {
    font-size: 1.125rem;
    max-width: 100%;
  }
  
  .service-content-section {
    padding: 4rem 0;
  }
  
  .service-content-wrapper {
    padding: 0 2rem;
  }
  
  .services-section {
    padding: 4rem 0;
  }
  
  .services-section .services-header,
  .services-section .services-grid {
    padding: 0 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
}

/* Benefits Section Styles */
.benefits-section {
  padding: 6rem 0;
  background: #F8FAFC;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.benefits-header p {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #C1272D;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C1272D 0%, #A81F24 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.benefit-item p {
  color: #64748B;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Detailed Benefits Section */
.benefits-section-detailed {
  padding: 8rem 0;
  background: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.benefits-text {
  text-align: left;
}

.section-badge {
  display: inline-block;
  background: rgba(193, 39, 45, 0.1);
  color: #C1272D;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(193, 39, 45, 0.2);
}

.benefits-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.benefits-text p {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.benefit-item.primary {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  border: none;
}

.benefit-item.primary h3,
.benefit-item.primary p {
  color: white;
}

.benefit-item.primary .benefit-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* CTA Section - "Ready to Strengthen Your [Service]?" */
.cta-section {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  padding: 4rem 0;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}


/* ===== CENTRALIZED BUTTON STYLES ===== */

/* Primary Red Button - Used for main CTAs like "Book a Demo" */
.button-home-red,
.button-home-red.hero,
.button-home-red.in-page {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  text-decoration: none;
  border-radius: 0.75rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  border: none;
  box-shadow: 0 4px 15px rgba(193, 39, 45, 0.3);
  cursor: pointer;
  min-width: auto;
  width: auto;
  margin-right: 1rem;
  /* Prevent any animations from being applied */
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.button-home-red:hover,
.button-home-red.hero:hover,
.button-home-red.in-page:hover {
  background: linear-gradient(135deg, #A81F24 0%, #8B1A1F 100%);
  color: white;
}

/* Secondary White Button - Used for "Learn More" type actions */
.button-home-white,
.button-home-white-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: white;
  color: #C1272D;
  text-decoration: none;
  border-radius: 0.75rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  border: 2px solid #C1272D;
  box-shadow: 0 4px 15px rgba(193, 39, 45, 0.1);
  cursor: pointer;
  min-width: auto;
  width: auto;
  margin-right: 0;
  /* Prevent any animations from being applied */
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.button-home-white:hover,
.button-home-white-hero:hover {
  background: #C1272D;
  color: white;
}

/* CTA Button - Used in value proposition sections */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: #C1272D;
  text-decoration: none;
  border-radius: 0.75rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: #f8f9fa;
  color: #A81F24;
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* Hero Button Block - Container for hero buttons */
.hero-button-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Responsive adjustments for buttons */
@media (max-width: 768px) {
  .hero-button-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .button-home-red,
  .button-home-red.hero,
  .button-home-red.in-page,
  .button-home-white,
  .button-home-white-hero {
    margin-right: 0;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Contact Form Section - "Ready to Work with [Service] Experts?" */
.contact-form-section {
  background: white;
  padding: 6rem 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.contact-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-form-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.contact-form-header p {
  font-size: 1.125rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.modern-contact-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C1272D;
  box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: #C1272D;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-submit:hover {
  background: #A81F24;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 39, 45, 0.3);
}

/* Checkbox Styling */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #C1272D;
  border-color: #C1272D;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Problem Statement Section */
.problem-statement-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.problem-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: center;
}

.problem-text .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.problem-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.problem-text p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #C1272D;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

/* Solution Overview Section */
.solution-overview-section {
  padding: 6rem 0;
  background: white;
}

.solution-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solution-text {
  text-align: center;
  margin-bottom: 4rem;
}

.solution-text .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.solution-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.solution-text p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.feature-icon.blue {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.feature-icon.green {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.feature-icon.orange {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-text {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-text .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.why-choose-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-choose-text p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.expertise-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.expertise-card.primary {
  border-color: #C1272D;
  background: linear-gradient(135deg, #ffffff 0%, #fef7f7 100%);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.expertise-icon.red {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.expertise-icon.blue {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.expertise-icon.green {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.expertise-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.expertise-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.proof-point {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-left: 4px solid #C1272D;
}

.proof-point .metric {
  font-size: 1.5rem;
  font-weight: 800;
  color: #C1272D;
}

.proof-point .context {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

/* Benefits Showcase Section */
.benefits-showcase-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  color: white;
}

.benefits-showcase-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefits-showcase-text {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-showcase-text .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.benefits-showcase-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefits-showcase-text p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-showcase-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-showcase-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-showcase-card.proactive {
  border-left: 4px solid #C1272D;
}

.benefit-showcase-card.threat-intel {
  border-left: 4px solid #C1272D;
}

.benefit-showcase-card.compliance {
  border-left: 4px solid #C1272D;
}

.benefit-showcase-card.cost-effective {
  border-left: 4px solid #C1272D;
}

.benefit-showcase-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.benefit-showcase-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.benefit-showcase-card p {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.methodology-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.methodology-header {
  text-align: center;
  margin-bottom: 4rem;
}

.methodology-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.methodology-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.methodology-header p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.methodology-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.methodology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.methodology-card.automated {
  border-top: 4px solid #C1272D;
}

.methodology-card.manual {
  border-top: 4px solid #C1272D;
}

.methodology-card.reporting {
  border-top: 4px solid #C1272D;
}

.methodology-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.methodology-card.automated .methodology-icon {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.methodology-card.manual .methodology-icon {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.methodology-card.reporting .methodology-icon {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
}

.methodology-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.methodology-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.methodology-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.methodology-card li {
  font-size: 0.875rem;
  color: #6c757d;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
  position: relative;
  padding-left: 1.5rem;
}

.methodology-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C1272D;
  font-weight: bold;
}

.methodology-card li:last-child {
  border-bottom: none;
}

/* Value Proposition Section */
.value-proposition-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.value-proposition-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.value-proposition-content .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.value-proposition-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.value-proposition-content p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.value-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.value-stats .stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.value-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #C1272D;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-stats .stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

/* Service Overview Section */
.service-overview-section {
  padding: 6rem 0;
  background: white;
}

.service-overview-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-overview-text {
  text-align: center;
  margin-bottom: 4rem;
}

.service-overview-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-overview-text p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.service-overview-features .feature-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.service-overview-features .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-overview-features .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.service-overview-features .feature-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.service-overview-features .feature-item p {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Key Capabilities Section */
.key-capabilities-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  color: white;
}

.key-capabilities-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.key-capabilities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.key-capabilities-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.key-capabilities-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.key-capabilities-header p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.capability-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.capability-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.capability-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.capability-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Threat Landscape Section */
.threat-landscape-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.threat-landscape-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: center;
}

.threat-landscape-text .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.threat-landscape-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.threat-landscape-text p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.7;
}

.threat-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.threat-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.threat-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #C1272D;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.threat-stats .stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 600;
}

/* Assessment Approach Section */
.assessment-approach-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
  color: white;
}

.assessment-approach-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.assessment-approach-header {
  text-align: center;
  margin-bottom: 4rem;
}

.assessment-approach-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.assessment-approach-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.assessment-approach-header p {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.approach-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.approach-card.discovery {
  border-top: 4px solid #10b981;
}

.approach-card.assessment {
  border-top: 4px solid #6366f1;
}

.approach-card.validation {
  border-top: 4px solid #C1272D;
}

.approach-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.approach-card.discovery .approach-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.approach-card.assessment .approach-icon {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.approach-card.validation .approach-icon {
  background: linear-gradient(135deg, #C1272D 0%, #A81F24 100%);
}

.approach-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.approach-card p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.approach-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-card li {
  font-size: 0.875rem;
  color: #cbd5e1;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.approach-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.approach-card li:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .problem-content,
  .threat-landscape-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .problem-text h2,
  .solution-text h2,
  .why-choose-text h2,
  .benefits-showcase-text h2,
  .methodology-header h2,
  .value-proposition-content h2,
  .service-overview-text h2,
  .key-capabilities-header h2,
  .threat-landscape-text h2,
  .assessment-approach-header h2 {
    font-size: 2rem;
  }
  
  .expertise-grid,
  .methodology-grid,
  .capabilities-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-features,
  .service-overview-features {
    grid-template-columns: 1fr;
  }
  
  .value-stats,
  .threat-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .benefits-section,
  .benefits-section-detailed,
  .cta-section,
  .contact-form-section {
    padding: 4rem 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-item {
    padding: 2rem;
  }
  
  .modern-contact-form {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefits-text {
    text-align: center;
  }
}

/* Hide old elements */
.navbar-2-0-old {
  display: none !important;
}

.footer-old {
  display: none !important;
}

/* Component Loading Styles */
/* Ensure components load smoothly.
   Default to visible, but fade in once content is injected. */
#navigation-placeholder,
#footer-placeholder,
#navigation-container,
#footer-container {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#navigation-placeholder:empty,
#footer-placeholder:empty,
#navigation-container:empty,
#footer-container:empty {
  opacity: 0;
}

/* Ensure navigation is always on top */
.navbar_component {
  position: relative;
  z-index: 1000;
}

/* Ensure sidebar menu is on top */
.side-menu_component,
.side-menu-background {
  z-index: 9999;
}
