/* Services Page Specific Styles with Modern Minimalism */

/* Base Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

h4 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  margin: 0;
  font: 20px sans-serif;
  font-weight: 400;
}
.coming-soon {
  min-width: 320px;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 2px 4px 0 rgba(145, 145, 145, 0.274);
  border-radius: 1.2rem;
  backdrop-filter: blur(16px);
  background: rgba(37, 37, 37, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  gap: 1.2rem;
}

.coming-soon:hover {
  min-width: 320px;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0px 0px 10px 2px rgba(145, 145, 145, 0.274);
  border-radius: 1.2rem;
  backdrop-filter: blur(16px);
  background: rgba(37, 37, 37, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}



  /* AI-toollaunch button */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.pulse-animation {
  animation: pulse 2s infinite;
}


.btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* 
.launch-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.launch-btn:hover {
  background: linear-gradient(135deg, #60a5fa, #1d4ed8);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
} */


/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: #dc2626;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #a1a1aa;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.02),
    transparent
  );
  transition: left 0.8s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.15);
  background: rgba(220, 38, 38, 0.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(220, 38, 38, 0.05);
}

.stat-item:hover::before {
  left: 100%;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Core Services Section */
.core-services {
  padding: 100px 0;
  background: #0f0f0f;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.01) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(220, 38, 38, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(220, 38, 38, 0.08);
  background: rgba(220, 38, 38, 0.01);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 2.2rem;
  color: #ffffff;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-description {
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: #e5e5e5;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.service-features i {
  color: #dc2626;
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

.service-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #dc2626;
}

.duration {
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Additional Services Section */
.additional-services {
  padding: 100px 0;
  background: #141414;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.02),
    transparent
  );
  transition: left 0.8s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.12);
  background: rgba(220, 38, 38, 0.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(220, 38, 38, 0.05);
}

.service-item:hover::before {
  left: 100%;
}

.service-icon-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.service-icon-small i {
  font-size: 1.5rem;
  color: #ffffff;
}

.service-item h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.service-item p {
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.service-price {
  color: #dc2626;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

/* CTA Button Styles */
.cta-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta-btn:hover::before {
  left: 100%;
}

/* Methodology Section */
.methodology {
  padding: 100px 0;
  background: #0f0f0f;
  margin-top: 0; /* Remove extra top margin */
}

.methodology-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.methodology-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #dc2626, #b91c1c);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: #1a1a1a;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  margin: 0 2rem;
  flex: 1;
  max-width: 350px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.3);
  background: #1e1e1e;
}

.timeline-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
}

/* Industry Focus Section */
.industry-focus {
  padding: 100px 0;
  background: #141414;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-item {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(220, 38, 38, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: rotate 8s linear infinite;
}

.industry-item:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.2);
  background: #1e1e1e;
}

.industry-item:hover::before {
  opacity: 1;
}

.industry-item i {
  font-size: 3rem;
  color: #dc2626;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.industry-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.industry-item p {
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* Services CTA Section */
.services-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.services-cta p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn.primary {
  background: #ffffff;
  color: #dc2626;
  border: 2px solid #ffffff;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #dc2626;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.service-item,
.industry-item,
.timeline-item {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-item:nth-child(4) {
  animation-delay: 0.4s;
}
.service-item:nth-child(5) {
  animation-delay: 0.5s;
}
.service-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .additional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 9999;
        overflow: hidden;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
        pointer-events: none;
        animation: gradientShift 8s ease-in-out infinite;
    }

    @keyframes gradientShift {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 1; }
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2rem 0;
        opacity: 0;
        transform: translateY(30px);
        animation: none;
    }

    .nav-menu.active li {
        animation: slideInFromTop 0.6s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }

    @keyframes slideInFromTop {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu .nav-link {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 2px;
        color: #ffffff;
        text-transform: uppercase;
        padding: 1rem 2rem;
        position: relative;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        border-radius: 8px;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(220, 38, 38, 0.1), transparent);
        border-radius: 8px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu .nav-link:hover::before {
        opacity: 1;
    }

    .nav-menu .nav-link:hover {
        color: #dc2626;
        border-color: rgba(220, 38, 38, 0.3);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        z-index: 10000;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #dc2626;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 2px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: #ffffff;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: #ffffff;
    }

  /* Hero Section */
  .services-hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
  }

  .stat-item {
    min-width: 200px;
    padding: 1.5rem;
  }

  /* Core Services */
  .core-services {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
  }

  .service-icon i {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .service-features {
    margin-bottom: 2rem;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .service-pricing {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .duration {
    font-size: 0.85rem;
  }

  /* Additional Services */
  .additional-services {
    padding: 80px 0;
  }

  .additional-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .service-item {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .service-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .service-icon-small i {
    font-size: 1.2rem;
  }

  .service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .service-item p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .service-price {
    font-size: 1rem;
    font-weight: 600;
    color: #dc2626;
  }

  /* Methodology Section */
  .methodology {
    padding: 80px 0;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero adjustments */
  .services-hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .stat-item {
    min-width: 160px;
    padding: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Section adjustments */
  .core-services,
  .additional-services,
  .methodology {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Service cards */
  .service-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 1.2rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .service-features li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .service-pricing {
    padding: 1rem;
    border-radius: 10px;
  }

  .price {
    font-size: 1.1rem;
  }

  .duration {
    font-size: 0.8rem;
  }

  /* Additional services */
  .service-item {
    padding: 1.5rem;
    border-radius: 14px;
  }

  .service-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }

  .service-icon-small i {
    font-size: 1.1rem;
  }

  .service-item h4 {
    font-size: 1rem;
  }

  .service-item p {
    font-size: 0.85rem;
  }

  .service-price {
    font-size: 0.95rem;
  }

  /* CTA Button */
  .cta-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  /* Step cards */
  .step {
    padding: 1.5rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .step h4 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .services-hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    min-width: 140px;
  }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-red);
}

.footer-section ul li i {
  color: var(--primary-red);
  margin-right: 0.5rem;
  width: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Service Detail Sections */
.service-detail {
  padding: 100px 0;
  position: relative;
}

.service-detail:nth-child(even) {
  background: var(--bg-secondary);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: white;
}

.service-detail h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-tagline {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 600;
}

.service-description {
  margin-top: 2rem;
}

.service-description > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.feature-item i {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.feature-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.5;
}