/* SERVICES PAGE SPECIFIC STYLES */

/* Hero Section */
.services-hero {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.services-hero::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="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  font-size: 0.9em;
  opacity: 0.9;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-card, .vision-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 2em;
  color: white;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #2c3e50;
}

.mission-card p, .vision-card p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* Core Services Section */
.core-services {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.8em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2em;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px;
  border-radius: 20px;
  background: #f8f9fa;
}

.service-showcase.reverse {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-showcase.reverse .service-content {
  order: 2;
}

.service-showcase.reverse .service-image {
  order: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.5em;
  color: white;
}

.service-header h3 {
  font-size: 1.8em;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.service-description p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-showcase.reverse .feature-item {
  background: #f8f9fa;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-item i {
  color: #1abc9c;
  font-size: 1.3em;
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1em;
  color: #2c3e50;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.95em;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.service-image {
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* Strategic Objectives */
.strategic-objectives {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.strategic-objectives .section-header h2 {
  color: white;
}

.strategic-objectives .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.objective-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, background 0.3s;
}

.objective-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.objective-icon {
  width: 70px;
  height: 70px;
  background: rgba(26, 188, 156, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid #1abc9c;
}

.objective-icon i {
  font-size: 1.8em;
  color: #1abc9c;
}

.objective-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: white;
}

.objective-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Revenue Streams */
.revenue-streams {
  padding: 100px 0;
  background: #f8f9fa;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.revenue-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.revenue-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.revenue-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.revenue-icon i {
  font-size: 1.5em;
  color: white;
}

.revenue-item h3 {
  font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 15px;
}

.revenue-item p {
  color: #666;
  line-height: 1.6;
}

/* Growth Timeline */
.growth-timeline {
  padding: 100px 0;
  background: white;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #1abc9c, #16a085);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.2em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: calc(50% - 60px);
  transition: transform 0.3s;
}

.timeline-item:not(.reverse) .timeline-content {
  margin-left: auto;
  margin-right: 60px;
}

.timeline-item.reverse .timeline-content {
  margin-right: auto;
  margin-left: 60px;
}

.timeline-content:hover {
  transform: scale(1.02);
}

.timeline-content h3 {
  font-size: 1.5em;
  color: #1abc9c;
  margin-bottom: 5px;
}

.timeline-content h4 {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  line-height: 1.5;
}

.timeline-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1abc9c;
  font-weight: bold;
}

/* Call to Action */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s;
  border: 2px solid white;
}

.btn-primary {
  background: white;
  color: #1abc9c;
}

.btn-primary:hover {
  background: transparent;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #1abc9c;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.5em;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .service-showcase.reverse .service-content,
  .service-showcase.reverse .service-image {
    order: initial;
  }
  
  .objectives-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .revenue-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
    width: 60px;
    height: 60px;
    font-size: 1em;
  }
  
  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 100px !important;
    margin-right: 0 !important;
  }
  
  .timeline-item.reverse .timeline-content {
    margin-left: 100px !important;
  }
}

@media (max-width: 600px) {
  .services-hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2em;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2.2em;
  }
  
  .service-showcase {
    padding: 20px;
    margin-bottom: 60px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 200px;
  }
}

/* Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1abc9c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #16a085;
}