/* =====================================================
   ADDITIONAL SECTIONS STYLES FOR COMPLETE WEBSITE
   ===================================================== */

/* =====================================================
   PRICING CALCULATOR CTA STYLES
   ===================================================== */
.price-calculator-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.3);
  position: relative;
  overflow: hidden;
}

.price-calculator-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.calculator-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.calculator-icon {
  flex-shrink: 0;
}

.calculator-icon svg {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.calculator-text {
  flex: 1;
  color: white;
}

.calculator-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.calculator-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.price-calculator-cta .cta-button {
  background: white;
  color: #1e3c72;
  padding: 18px 35px;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.price-calculator-cta .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   PRICING ADDITIONAL INFO STYLES
   ===================================================== */
.pricing-additional-info {
  margin-top: 60px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid #d4e6f7;
}

.pricing-additional-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.pricing-additional-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0077BE, transparent);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 119, 190, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 119, 190, 0.15);
}

.info-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 12px;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.5;
}

/* =====================================================
   PROCESS SECTION STYLES - COMPLETELY REDESIGNED
   ===================================================== */
.process-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 119, 190, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-timeline {
  position: relative;
  margin-top: 40px;
}

/* New flexbox layout for proper centering */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 0 1 200px;
  background: white;
  border-radius: 20px;
  padding: 60px 25px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 119, 190, 0.1);
  border: 2px solid #e3f2fd;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 119, 190, 0.2);
  border-color: #0077BE;
}

/* Number positioned at the top */
.process-step .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.3);
  border: 3px solid white;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  transform: translateX(-50%) scale(1.1);
}

/* Icon properly centered */
.process-step .step-icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 119, 190, 0.2));
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 8px rgba(0, 119, 190, 0.3));
}

/* Title styling */
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0077BE;
  margin: 10px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-step:hover h3 {
  color: #FF6B35;
}

/* Description text */
.process-step p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
  min-height: 60px;
}

/* Animation for steps */
.process-step:nth-child(1) {
  animation: slideInUp 0.5s ease-out 0.1s both;
}

.process-step:nth-child(2) {
  animation: slideInUp 0.5s ease-out 0.2s both;
}

.process-step:nth-child(3) {
  animation: slideInUp 0.5s ease-out 0.3s both;
}

.process-step:nth-child(4) {
  animation: slideInUp 0.5s ease-out 0.4s both;
}

.process-step:nth-child(5) {
  animation: slideInUp 0.5s ease-out 0.5s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -25px;
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, #0077BE, #4A90E2);
  opacity: 0.3;
}

@media (max-width: 1100px) {
  .process-step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

/* =====================================================
   EXPERTISE SECTION STYLES
   ===================================================== */
.expertise-section {
  padding: 80px 0;
  background: white;
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0077BE;
  margin-bottom: 20px;
  line-height: 1.2;
}

.expertise-text .highlight {
  color: #FF6B35;
}

.expertise-features {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

.expertise-feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #0077BE;
  transition: all 0.3s ease;
}

.expertise-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.15);
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.expertise-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 8px;
}

.expertise-details p {
  color: #5a6c7d;
  line-height: 1.6;
}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, #2d101000, #c4cad5);
  padding: 40px;
  border-radius: 20px;
  color: white;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* =====================================================
   CERTIFICATIONS SECTION STYLES
   ===================================================== */

.certifications-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.certification-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0077BE, #4A90E2);
}

.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 119, 190, 0.2);
}

.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.certification-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 10px;
}

.certification-card p {
  color: #5a6c7d;
  line-height: 1.6;
}

/* =====================================================
   TOOLS & EQUIPMENT SECTION STYLES
   ===================================================== */
.tools-section {
  padding: 80px 0;
  background: white;
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tools-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tool-category {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
}

.tool-category h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0077BE;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e3f2fd;
}

.tools-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: #e3f2fd;
  transform: translateX(5px);
}

.tool-icon {
  width: 30px;
  height: 30px;
  background: #0077BE;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.tool-name {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

/* =====================================================
   GUARANTEE SECTION STYLES
   ===================================================== */
.guarantee-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.guarantee-content {
  text-align: center;
  color: white;
}

.guarantee-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.guarantee-content .subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 50px;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 20px;
}

.guarantee-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
}

.guarantee-card p {
  color: #5a6c7d;
  line-height: 1.6;
}

/* =====================================================
   BLOG PREVIEW SECTION STYLES
   ===================================================== */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header .view-all-link {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-header .view-all-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #0077BE;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #8795a1;
}

.blog-date,
.blog-category {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-excerpt {
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: #0077BE;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 10px;
  color: #4A90E2;
}

/* =====================================================
   WORK EXAMPLES SECTION STYLES
   ===================================================== */

.examples-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.examples-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.example-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.example-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.example-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.example-item:hover .example-overlay {
  transform: translateY(0);
}

.example-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.example-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   TEAM SECTION STYLES
   ===================================================== */

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 119, 190, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 119, 190, 0.2);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0077BE, #4A90E2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 5px;
}

.member-role {
  font-size: 14px;
  color: #4A90E2;
  margin-bottom: 15px;
  font-weight: 600;
}

.member-experience {
  font-size: 13px;
  color: #5a6c7d;
  line-height: 1.5;
}

/* =====================================================
   COMPARISON TABLE SECTION STYLES
   ===================================================== */
.comparison-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 119, 190, 0.15);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding: 25px;
}

.comparison-header .feature-col {
  font-size: 18px;
  font-weight: 700;
}

.us-col,
.others-col {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 20px 25px;
  border-bottom: 1px solid #e3f2fd;
  transition: all 0.3s ease;
}

.comparison-row:hover {
  background: #f8fbff;
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-name {
  font-weight: 600;
  color: #2c3e50;
}

.check,
.cross {
  text-align: center;
  font-size: 24px;
}

.check {
  color: #28a745;
}

.cross {
  color: #dc3545;
}

/* =====================================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ===================================================== */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    justify-content: center;
  }

  .process-step {
    flex: 0 1 180px;
  }

  .expertise-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-cards {
    grid-template-columns: 1fr;
  }

  .examples-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .calculator-content {
    flex-direction: column;
    text-align: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    flex: 0 1 auto;
    width: 100%;
    max-width: 300px;
  }

  .expertise-content {
    grid-template-columns: 1fr;
  }

  .tools-showcase {
    grid-template-columns: 1fr;
  }

  .tools-list {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .examples-gallery {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .calculator-text h3 {
    font-size: 24px;
  }

  .calculator-text p {
    font-size: 16px;
  }
}