/*-----------------------------------*\
  #SERVICES PAGE STYLES
\*-----------------------------------*/

:root {
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    --gradient-accent: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
    --gradient-background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    --shadow-primary: 0 10px 30px rgba(99, 102, 241, 0.15);
    --shadow-hover: 0 20px 40px rgba(99, 102, 241, 0.25);
    --shadow-card: 0 8px 32px rgba(73, 95, 239, 0.12);
    --shadow-card-hover: 0 16px 48px rgba(73, 95, 239, 0.2);
  }
  

body {
  background: var(--bg-lavender-blush);
}

/* Hero Section - Now matches index.html exactly */
.hero {
  position: relative;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: slideUp 1s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  color: var(--text-majorelle-blue);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle img {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(99, 102, 241, 0.1);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.9rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: var(--text-gunmetal);
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-majorelle-blue);
  display: block;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-granite-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-banner {
  animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-banner img {
  border-radius: 20px;
  box-shadow: var(--shadow-card-hover);
  transition: transform 0.3s ease;
}

.hero-banner:hover img {
  transform: scale(1.02);
}

/* Main Services Section - New List Layout */
.services-main {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text-granite-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-list {
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(99, 102, 241, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item.featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
  transform: scale(1.02);
}

.service-item.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #0022ff;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
  z-index: 2;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

.service-icon ion-icon {
  font-size: 2.8rem;
  color: white;
  transition: all 0.4s ease;
}

.service-item:hover .service-icon ion-icon {
  transform: scale(1.1);
}

.service-details {
  flex: 1;
}

.service-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-majorelle-blue);
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-features li {
  font-size: 1.4rem;
  color: var(--text-gunmetal);
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.08);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: '✓';
  margin-right: 8px;
  color: var(--text-majorelle-blue);
  font-weight: bold;
}

.service-item:hover .service-features li {
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-2px);
}

.service-cta {
  flex-shrink: 0;
  margin-left: 30px;
}

.btn-service {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-service:hover::before {
  left: 100%;
}

.btn-service.featured {
  background: var(--gradient-secondary);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-service.featured:hover {
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

/* Process Section */
.services-process {
  padding: 100px 0;
  background: linear-gradient(135deg, #e3f0ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%233c5ecb" opacity="0.04"/></pattern></defs><rect width="100%" height="100%" fill="url(%23process-dots)"/></svg>');
  pointer-events: none;
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: var(--shadow-primary);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  position: relative;
}

.process-step:hover .step-number {
  transform: scale(1.2);
  box-shadow: var(--shadow-hover);
}

.step-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin: 0 40px;
  flex: 1;
  max-width: 400px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.step-content h3 {
  font-size: 2.2rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 12px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

/* Why Choose Us Section */
.services-why {
  padding: 100px 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-primary);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

.why-icon ion-icon {
  font-size: 2.4rem;
  color: white;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon ion-icon {
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 2.2rem;
  color: var(--text-majorelle-blue);
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card p {
  font-size: 1.6rem;
  color: var(--text-granite-gray);
  line-height: 1.6;
}

/* CTA Section */
.services-cta {
  padding: 100px 0;
  background: var(--gradient-background);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%236366f1" opacity="0.08"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-dots)"/></svg>');
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.8rem;
  color: var(--text-granite-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.cta-buttons .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-primary);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-majorelle-blue);
  border: 2px solid var(--text-majorelle-blue);
  backdrop-filter: blur(12px);
}

.cta-buttons .btn-secondary:hover {
  background: var(--text-majorelle-blue);
  color: white;
  transform: translateY(-3px);
}

.cta-buttons .btn ion-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.cta-buttons .btn:hover ion-icon {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-banner {
    order: -1;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .service-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-features {
    justify-content: center;
  }
  
  .service-cta {
    margin-left: 0;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
  }
  
  .step-content {
    margin-left: 80px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px 0;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-text {
    font-size: 1.6rem;
  }
  
  .hero-stats {
    gap: 30px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
  
  .service-item {
    padding: 30px 20px;
  }
  
  .service-item.featured {
    transform: none;
  }
  
  .service-item.featured:hover {
    transform: translateY(-8px);
  }
  
  .service-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .service-features li {
    text-align: center;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .services-main,
  .services-process,
  .services-why,
  .services-cta {
    padding: 60px 0;
  }
  
  .service-item,
  .why-card {
    padding: 25px 20px;
  }
  
  .step-content {
    margin-left: 60px;
    padding: 20px;
  }
} 