/* Enhanced Implementation Section Styles */
.implementation-section {
  padding: 5rem 0;
  background-color: #f9fbfd;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: block;
  font-size: 1.1rem;
  color: #3db090;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c4487;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
  color: #2c8c94;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(60, 176, 144, 0.2);
  z-index: -1;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, #2a6f8e, transparent);
}

.divider-icon {
  margin: 0 1rem;
  color: #369b94;
  font-size: 1.5rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #5a6d80;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Featured Projects Section */
.featured-projects-section {
  margin: 4rem 0;
}

.project-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.project-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1c4487;
}

.project-intro .lead-text {
  font-size: 1.2rem;
  color: #5a6d80;
  max-width: 800px;
  margin: 0 auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(28, 68, 135, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #3db090;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(28, 68, 135, 0.15);
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1c4487 0%, #3db090 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-card h4 {
  font-size: 1.3rem;
  color: #1c4487;
  margin-bottom: 1rem;
}

.project-details p {
  color: #5a6d80;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.feature-list i {
  color: #3db090;
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tech-badges span {
  background: #f0f7ff;
  color: #1c4487;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Process Section */
.process-section {
  background: linear-gradient(to bottom, #f5f9ff 0%, #ffffff 100%);
  padding: 4rem 0;
  margin: 4rem 0;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #3db090, #1c4487);
}

.process-phase {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.phase-number {
  width: 40px;
  height: 40px;
  background: #1c4487;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.phase-content {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(28, 68, 135, 0.08);
}

.phase-content h4 {
  font-size: 1.2rem;
  color: #1c4487;
  margin-bottom: 1rem;
}

.phase-content ul {
  list-style: none;
  padding-left: 0;
}

.phase-content li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.phase-content li::before {
  content: '•';
  color: #3db090;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.benefits-intro h3 {
  font-size: 1.8rem;
  color: #1c4487;
  margin-bottom: 1.5rem;
}

.benefits-intro p {
  font-size: 1.1rem;
  color: #5a6d80;
  line-height: 1.6;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.benefit-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(28, 68, 135, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1c4487 0%, #3db090 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  color: #1c4487;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 0.9rem;
  color: #5a6d80;
  line-height: 1.5;
}

/* Enhanced CTA Form Section */
.implementation-cta {
  background: linear-gradient(135deg, #1c4487 0%, #2a6f8e 100%);
  border-radius: 12px;
  padding: 3rem;
  margin-top: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.implementation-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.implementation-cta::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content-col, .cta-form-col {
  flex: 1;
  min-width: 300px;
}

.cta-content-col {
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

.cta-content-col h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-benefits {
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.benefit-item i {
  color: #3db090;
  margin-right: 1rem;
  margin-top: 3px;
  font-size: 1.2rem;
}

.trust-indicators {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.trust-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3db090;
}

.trust-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Form Styles */
.cta-form-col {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h4 {
  color: #1c4487;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #5a6d80;
}

.gil-energy-form .form-group {
  margin-bottom: 1.5rem;
}

.gil-energy-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.gil-energy-form input[type="text"],
.gil-energy-form input[type="email"],
.gil-energy-form input[type="tel"],
.gil-energy-form select,
.gil-energy-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.gil-energy-form input[type="text"]:focus,
.gil-energy-form input[type="email"]:focus,
.gil-energy-form input[type="tel"]:focus,
.gil-energy-form select:focus,
.gil-energy-form textarea:focus {
  border-color: #1c4487;
  box-shadow: 0 0 0 2px rgba(28, 68, 135, 0.2);
  outline: none;
}

.gil-energy-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
}

.gil-energy-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 2rem;
}

.btn-primary {
  background-color: #1c4487;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-primary:hover {
  background-color: #0d2b3e;
  transform: translateY(-2px);
}

.btn-text {
  flex: 1;
  text-align: center;
}

.btn-icon {
  margin-left: 10px;
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
  text-align: center;
}

.form-disclaimer a {
  color: #1c4487;
  text-decoration: underline;
}

.error {
  border-color: #e74c3c !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-intro {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    left: 20px;
  }
  
  .phase-number {
    margin-right: 1rem;
  }
  
  .cta-form-container {
    flex-direction: column;
  }
  
  .cta-content-col {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .implementation-cta {
    padding: 2rem;
  }
}

/* Animation for cards */
[data-aos] {
  transition-property: transform, opacity;
}

.aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Loading spinner */
.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}