/* ===== PROCESS SECTION ENHANCED ===== */

/* Process Section Styles */
.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

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

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-section .section-title {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
  position: relative !important;
}

.process-section .section-subtitle {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 60px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
}

.process-timeline {
  margin-top: 50px;
}

.process-timeline .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
}

.process-step {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 15px 15px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 220px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0);
}

.process-step:hover::before {
  opacity: 1;
  transform: scale(1);
}

.process-step:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,204,51,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-icon {
  position: relative;
  margin-bottom: 10px;
  display: inline-block;
}

.step-icon i {
  font-size: 48px;
  color: #ffcc33;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -18px;
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b35 100%);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255,204,51,0.3);
}

.process-step:hover .step-icon i {
  transform: scale(1.1) rotateY(360deg);
  color: #fff;
  text-shadow: 0 0 20px rgba(255,204,51,0.8);
}

.process-step h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.process-step:hover h4 {
  color: #ffcc33;
  transform: translateY(-2px);
}

.process-step p {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.process-step:hover p {
  color: rgba(255,255,255,0.95);
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feature-tag {
  background: rgba(255,204,51,0.2);
  color: #ffcc33;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 500;
  border: 1px solid rgba(255,204,51,0.3);
  transition: all 0.3s ease;
}

.process-step:hover .feature-tag {
  background: rgba(255,204,51,0.3);
  border-color: rgba(255,204,51,0.5);
  transform: translateY(-2px);
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b35 100%);
  color: #222;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(255, 204, 51, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.process-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35 0%, #ffcc33 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.process-cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 204, 51, 0.4);
  border-color: #ffcc33;
}

.process-cta-btn:hover::before {
  left: 0;
}

.process-cta-btn i {
  transition: transform 0.3s ease;
}

.process-cta-btn:hover i {
  transform: translateX(5px);
}

/* Multi Sub-titles */
.multi-subtitles {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.sub-title {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,204,51,0.2);
  border-radius: 25px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

.sub-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,204,51,0.15), transparent);
  transition: left 0.6s ease;
}

.sub-title:hover::before {
  left: 100%;
}

.sub-title:hover {
  transform: translateY(-5px);
  border-color: rgba(255,204,51,0.4);
  box-shadow: 0 8px 20px rgba(255,204,51,0.15);
}

.sub-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  position: relative;
  z-index: 2;
}

.sub-icon i {
  color: white;
  font-size: 16px;
}

.sub-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

/* Sub-title specific animations */
.sub-1 {
  animation: subSlideInUp 0.8s ease-out 2.2s forwards;
}

.sub-2 {
  animation: subSlideInUp 0.8s ease-out 2.4s forwards;
}

.sub-3 {
  animation: subSlideInUp 0.8s ease-out 2.6s forwards;
}

.sub-4 {
  animation: subSlideInUp 0.8s ease-out 2.8s forwards;
}

@keyframes subSlideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Subtitle Words */
.section-subtitle {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px !important;
  text-align: center !important;
  max-width: 800px !important;
  margin: 0 auto 60px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.subtitle-word {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
  position: relative;
}

.subtitle-word::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ffcc33;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Word specific animations */
.word-1 {
  animation: wordSlideIn 0.8s ease-out 0.2s forwards;
}

.word-2 {
  animation: wordSlideIn 0.8s ease-out 0.4s forwards;
}

.word-3 {
  animation: wordSlideIn 0.8s ease-out 0.6s forwards;
}

.word-4 {
  animation: wordSlideIn 0.8s ease-out 0.8s forwards;
}

.word-5 {
  animation: wordSlideIn 0.8s ease-out 1.0s forwards;
}

.word-6 {
  animation: wordSlideIn 0.8s ease-out 1.2s forwards;
}

.word-7 {
  animation: wordSlideIn 0.8s ease-out 1.4s forwards;
}

.word-8 {
  animation: wordSlideIn 0.8s ease-out 1.6s forwards;
}

.word-9 {
  animation: wordSlideIn 0.8s ease-out 1.8s forwards;
}

.word-10 {
  animation: wordSlideIn 0.8s ease-out 2.0s forwards;
}

@keyframes wordSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animated Multi Titles */
.process-animated-titles {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 50px;
  position: relative;
  max-width: 1000px;
  gap: 20px;
  flex-wrap: wrap;
}

.animated-title {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,204,51,0.3);
  border-radius: 30px;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.animated-title:hover::before {
  left: 100%;
}

.animated-title:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,51,0.6);
  box-shadow: 0 10px 25px rgba(255,204,51,0.2);
}

.title-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  position: relative;
  z-index: 2;
}

.title-icon i {
  color: white;
  font-size: 18px;
}

.title-text {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* New Card Design */
.process-card-new {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 0;
  margin-bottom: 20px;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.process-card-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0);
}

.process-card-new:hover::before {
  opacity: 1;
  transform: scale(1);
}

.process-card-new:hover {
  transform: translateY(-10px);
  border-color: rgba(255,204,51,0.5);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-header {
  background: rgba(255,204,51,0.1);
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,204,51,0.2);
  display: flex;
  align-items: center;
  position: relative;
}

.card-icon {
  position: relative;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.card-icon i {
  font-size: 24px;
  color: #ffcc33;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.card-number {
  position: absolute;
  top: -8px;
  right: -15px;
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b35 100%);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(255,204,51,0.3);
}

.card-header h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s ease;
}

.process-card-new:hover .card-icon i {
  transform: scale(1.1) rotateY(360deg);
  color: #fff;
  text-shadow: 0 0 15px rgba(255,204,51,0.8);
}

.process-card-new:hover .card-header h4 {
  color: #ffcc33;
  transform: translateY(-2px);
}

.card-body {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body p {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.process-card-new:hover .card-body p {
  color: rgba(255,255,255,1);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-badge {
  background: rgba(255,204,51,0.15);
  color: #ffcc33;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 8px;
  font-weight: 500;
  border: 1px solid rgba(255,204,51,0.3);
  transition: all 0.3s ease;
}

.process-card-new:hover .feature-badge {
  background: rgba(255,204,51,0.25);
  border-color: rgba(255,204,51,0.5);
  transform: translateY(-1px);
}

/* Animated Transition Lines */
.process-transition-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 60px;
  position: relative;
  max-width: 800px;
}

.transition-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc33, transparent);
  flex: 1;
  margin: 0 8px;
  position: relative;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
}

.transition-line::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffcc33;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.5);
}

.transition-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #ffcc33;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 204, 51, 0.5);
}

/* Line specific animations */
.line-1 {
  animation: expandLine 1.5s ease-out 0.8s forwards;
}

.line-2 {
  animation: expandLine 1.5s ease-out 1.0s forwards;
}

.line-3 {
  animation: expandLine 1.5s ease-out 1.2s forwards;
}

.line-4 {
  animation: expandLine 1.5s ease-out 1.4s forwards;
}

.line-5 {
  animation: expandLine 1.5s ease-out 1.6s forwards;
}

@keyframes expandLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Modern FAQ Section */
.faq-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(45,45,45,0.9) 100%);
  position: relative;
  overflow: hidden;
}

.faq-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,204,51,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.faq-main-title {
  color: #ffffff !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}

.title-highlight {
  color: #ffcc33;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ffcc33;
  border-radius: 2px;
}

.faq-main-subtitle {
  color: rgba(255,255,255,0.8) !important;
  font-size: 18px !important;
  text-align: center !important;
  max-width: 700px !important;
  margin: 0 auto 50px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
}

/* Category Tabs */
.faq-categories {
  margin-top: 50px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,204,51,0.3);
  border-radius: 50px;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-btn:hover {
  background: rgba(255,204,51,0.2);
  border-color: #ffcc33;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  border-color: #ffcc33;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255,204,51,0.3);
}

.tab-btn i {
  font-size: 18px;
}

/* Tab Content */
.faq-content {
  min-height: 400px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* Warranty Cards */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.faq-card-modern {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-card-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0);
}

.faq-card-modern:hover::before {
  opacity: 1;
  transform: scale(1);
}

.faq-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(255,204,51,0.5);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.faq-icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.faq-icon-bg {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-icon-bg i {
  color: #ffffff;
  font-size: 24px;
}

.faq-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6b35;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-badge.premium {
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
}

.faq-card-modern h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-card-modern p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-item {
  background: rgba(255,204,51,0.15);
  color: #ffcc33;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255,204,51,0.3);
}

/* Service Showcase */
.service-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,51,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,204,51,0.2), rgba(255,204,51,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon-large i {
  color: #ffcc33;
  font-size: 28px;
}

.service-item h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-item p {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
}

/* Modern Process Steps */
.process-steps-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step-modern {
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step-modern:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,51,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number-large {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.step-content h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
}

/* Support Grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.support-card {
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,204,51,0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.support-icon-wrapper {
  margin-bottom: 15px;
}

.support-icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.support-icon-bg.whatsapp {
  background: #25d366;
}

.support-icon-bg.phone {
  background: #128c7e;
}

.support-icon-bg.visit {
  background: #28a745;
}

.support-icon-bg.emergency {
  background: #dc3545;
}

.support-icon-bg i {
  color: #ffffff;
  font-size: 24px;
}

.support-card h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-card p {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.support-badge {
  display: inline-block;
  background: rgba(255,204,51,0.2);
  color: #ffcc33;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,204,51,0.4);
}

/* FAQ Section */
.process-faq-section {
  padding: 80px 0 100px;
  background: rgba(255,255,255,0.02);
  position: relative;
}

.faq-title {
  color: #000000 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  text-shadow: none !important;
}

.faq-subtitle {
  color: #f4d03f !important;
  font-size: 16px !important;
  text-align: center !important;
  max-width: 600px !important;
  margin: 0 auto 50px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
}

.faq-items {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,204,51,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,204,51,0.4);
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-question h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
}

.faq-question i.fa-shield,
.faq-question i.fa-gift,
.faq-question i.fa-camera,
.faq-question i.fa-bolt,
.faq-question i.fa-life-ring {
  color: #ffcc33;
  margin-right: 12px;
  font-size: 18px;
}

.faq-question i.fa-plus {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-question i.fa-plus {
  transform: rotate(45deg);
  color: #ffcc33;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px 20px;
}

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

.faq-answer p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Process Section Styles */
.modern-process-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(254, 203, 56, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 203, 56, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #fecb38, #fecb38);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 80px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-steps-modern {
    margin-bottom: 80px;
}

.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 20px;
}

.process-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
    border: 2px solid #fecb38;
    background-clip: padding-box;
    box-shadow: 0 10px 30px rgba(254, 203, 56, 0.15);
}

.process-card-modern.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.process-card-modern:hover {
    transform: translateY(-15px) scale(1.05) rotateX(0);
    box-shadow: 0 25px 60px rgba(254, 203, 56, 0.25);
    background: #ffffff;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fecb38, #fecb38);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(254, 203, 56, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.process-card-modern:hover .step-number {
    transform: translateX(-50%) scale(1.2) rotate(360deg);
    box-shadow: 0 12px 30px rgba(255, 204, 51, 0.4);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.process-card-modern:hover .card-title {
    color: #fecb38;
    transform: translateY(-3px);
}

.card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card-modern:hover .card-description {
    color: #333333;
    transform: translateY(-2px);
}

/* FAQ Section Styles */
.faq-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.faq-accordion {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.faq-question:hover {
    background-color: #f8f9fa;
    color: #ffcc33;
}

.faq-question:focus {
    outline: 2px solid #ffcc33;
    outline-offset: 2px;
}

.faq-question.active {
    color: #ffcc33;
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #ffcc33;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.faq-cta-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffcc33 0%, #ffb300 100%);
    color: #222;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-cta-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 51, 0.3);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    
    .process-card-modern {
        height: 180px;
        padding: 20px 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .process-card-modern {
        height: 160px;
        padding: 18px 12px;
    }
    
    .section-title {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Enhanced Footer Styles */
.enhanced-footer {
  background: #2c3e50;
  color: #ecf0f1;
  font-family: 'Arial', sans-serif;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid #34495e;
}

.footer-bottom {
  padding: 20px 0;
  background: #1a252f;
}

.footer-about h3,
.footer-contact h3,
.footer-services h3 {
  color: #f4d03f;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-about h3:after,
.footer-contact h3:after,
.footer-services h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f4d03f;
}

.footer-about p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #111111, #2c2c2c);
  border-radius: 15px;
  color: #fecb38;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fecb38, #ffb300);
  transition: left 0.5s ease;
  z-index: 0;
}

.social-links a i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-8px) rotate(5deg) scale(1.1);
  border-color: #fecb38;
  box-shadow: 0 15px 35px rgba(254, 203, 56, 0.4);
}

.social-links a:hover::before {
  left: 0;
}

.social-links a:hover i {
  color: #111111;
  transform: scale(1.2) rotate(360deg);
}

/* Individual platform colors */
.social-links a:hover {
  background: linear-gradient(135deg, #fecb38, #ffb300);
}

/* Facebook specific */
.social-links a[href*="facebook"]:hover {
  background: linear-gradient(135deg, #1877f2, #0c5ed8);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

/* Instagram specific */
.social-links a[href*="instagram"]:hover {
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4, #5851db, #405de6);
  box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

/* Pinterest specific */
.social-links a[href*="pin.it"]:hover {
  background: linear-gradient(135deg, #bd081c, #e60023);
  box-shadow: 0 15px 35px rgba(189, 8, 28, 0.4);
}

.footer-contact {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}

.footer-contact * {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
}

.enhanced-footer .footer-contact {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
}

.footer-contact .contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact .contact-info li {
  margin-bottom: 15px;
  color: #bdc3c7;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-contact .contact-info i {
  color: #f4d03f;
  margin-right: 12px;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}

.footer-contact .contact-info a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact .contact-info a:hover {
  color: #f4d03f;
}

.btn-contact-us {
  display: inline-block;
  padding: 12px 25px;
  background: #fecb38 !important;
  color: #111111 !important;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #fecb38 !important;
}

.btn-contact-us:hover {
  background: #111111 !important;
  color: #fecb38 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(254, 203, 56, 0.3);
}

.footer-services .services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services .services-list li {
  margin-bottom: 12px;
}

.footer-services .services-list a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-services .services-list a:before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #f4d03f;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.footer-services .services-list a:hover {
  color: #f4d03f;
  padding-left: 20px;
}

.footer-services .services-list a:hover:before {
  transform: translateY(-50%) translateX(3px);
}

.footer-copyright {
  text-align: left;
}

.footer-copyright p {
  margin: 0;
  color: #95a5a6;
  font-size: 14px;
}

.footer-copyright a {
  color: #f4d03f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #e6c037;
}

.quick-links {
  text-align: right;
}

.quick-links a {
  color: #95a5a6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.quick-links a:hover {
  color: #f4d03f;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }
  
  .footer-about,
  .footer-contact,
  .footer-services {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .footer-about h3:after,
  .footer-contact h3:after,
  .footer-services h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 12px;
  }
  
  .social-links a:hover {
    transform: translateY(-6px) rotate(3deg) scale(1.05);
  }
  
  .footer-contact .contact-info li {
    justify-content: center;
    text-align: left;
  }
  
  .btn-contact-us {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
  
  .footer-copyright,
  .quick-links {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .quick-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 0 20px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
  
  .quick-links a {
    display: block;
    margin: 5px 0;
  }
}
