/* =============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================= */

/* Services Hero Section */
.services-hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.services-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.services-hero .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: floatServices 25s ease-in-out infinite;
}

.services-hero .hero-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #f59e0b, #eab308);
  top: -200px;
  right: -200px;
}

.services-hero .hero-shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -175px;
  left: -175px;
  animation-delay: -12s;
}

.services-hero .hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMoveServices 20s linear infinite;
}

.services-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease-out;
}

.services-hero .hero-badge-text {
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9rem;
}

.services-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.services-hero-subtitle {
  font-size: 1.4rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  gap: 1rem;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(245, 158, 11, 0.5);
}

.hero-btn-outline:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 4rem;
  text-align: center;
  animation: slideUp 0.8s ease-out 0.8s both;
}

.trust-text {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.1rem;
}

.badge-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Services Main Section */
.services-main-section {
  padding: 8rem 0;
  background: #f8fafc;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.services-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.service-card-top {
  padding: 2.5rem 2.5rem 1.5rem;
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.service-icon-wrapper {
  position: relative;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(31, 45, 93, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.service-number {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent-color);
  opacity: 0.7;
  line-height: 1;
}

.service-main-content {
  margin-bottom: 2rem;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.service-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-card-bottom {
  padding: 0 2.5rem 2.5rem;
  margin-top: auto;
}

.service-action {
  display: flex;
  justify-content: flex-start;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(31, 45, 93, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}

.service-btn:hover {
  color: white;
  background: linear-gradient(135deg, var(--primary-color), #2a3f7a);
  border-color: var(--primary-color);
  gap: 1rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.25);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-arrow svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.service-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Why Choose Services Section */
.why-choose-services {
  padding: 8rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: #f8fafc;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  background: white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Process Section */
.our-process {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
}

.process-step.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(30px);
}

.process-step:nth-child(even).animate-in {
  transform: translateX(0);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(31, 45, 93, 0.3);
}

.step-content {
  flex: 1;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  margin: 0 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 12px solid transparent;
}

.process-step:nth-child(odd) .step-content::before {
  left: -24px;
  border-right-color: white;
  transform: translateY(-50%);
}

.process-step:nth-child(even) .step-content::before {
  right: -24px;
  border-left-color: white;
  transform: translateY(-50%);
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: floatServices 20s ease-in-out infinite;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--accent-color), #f59e0b);
  top: -150px;
  right: -150px;
}

.cta-shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  bottom: -125px;
  left: -125px;
  animation-delay: -10s;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.cta-badge-text {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-title {
  margin-bottom: 1.5rem;
}

.cta-title-main {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.cta-title-sub {
  display: block;
  font-size: 1.5rem;
  color: #cbd5e1;
  font-weight: 400;
}

.cta-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary-btn {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
  gap: 1rem;
}

.cta-secondary-btn {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Animations */
@keyframes floatServices {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes gridMoveServices {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 2rem;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .trust-badges {
    gap: 1rem;
  }
  
  .trust-badge {
    padding: 0.5rem 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card-top {
    padding: 2rem 2rem 1rem;
  }
  
  .service-card-bottom {
    padding: 0 2rem 2rem;
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
  }
  
  .service-title {
    font-size: 1.4rem;
  }
  
  .service-btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .services-header h2 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center;
    transform: none !important;
  }
  
  .process-step.animate-in {
    transform: none !important;
  }
  
  .step-content {
    margin: 1rem 0 0 0;
  }
  
  .step-content::before {
    display: none;
  }
  
  .cta-title-main {
    font-size: 2.2rem;
  }
  
  .cta-title-sub {
    font-size: 1.2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 2rem;
  }
  
  .service-card-top {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .service-card-bottom {
    padding: 0 1.5rem 1.5rem;
  }
  
  .service-icon {
    width: 48px;
    height: 48px;
  }
  
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .benefit-card {
    padding: 2rem 1rem;
  }
  
  .services-main-section {
    padding: 5rem 0;
  }
  
  .why-choose-services {
    padding: 5rem 0;
  }
  
  .our-process {
    padding: 5rem 0;
  }
  
  .services-cta {
    padding: 4rem 0;
  }
} 