/* Digital Marketing Page Specific Styles */

/* Page Header */
.digital-marketing-hero {
  background: linear-gradient(135deg, #f8fafc 0%, rgba(219, 234, 254, 0.3) 100%);
  padding: 2rem 0;
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
  margin-top: 2rem;
}

.hero-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.hero-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.section-description{
    font-size: 1.125rem;
    /* color: var(--text-secondary); */
    line-height: 1.7;
    font-weight: 600;
}

/* Container */
.breadcrumb-btn {
  display: flex;
  list-style: none;
  /* margin: 0; */
  padding: 0;
}

/* Each item */
.breadcrumb-btn-item {
  position: relative;
  margin-right: 0;
}

.breadcrumb-btn-item a,
.breadcrumb-btn-item.active {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #f1f5f9;
  /* light gray */
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Arrow effect */
.breadcrumb-btn-item a::after,
.breadcrumb-btn-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 15px solid #f1f5f9;
  /* match background */
  z-index: 1;
}

/* First item (Home) with gradient + left rounded only */
.breadcrumb-btn-item:first-child a {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  border-radius: 25px 0 0 25px;
  /* round only left side */
}

.breadcrumb-btn-item:first-child a::after {
  border-left-color: #0072ff;
  /* gradient end color */
}

/* Hover effect */
.breadcrumb-btn-item a:hover {
  background: #e2e8f0;
}

.breadcrumb-btn-item a:hover::after {
  border-left-color: #e2e8f0;
}

/* Active item (About Us) with right rounded only */
.breadcrumb-btn-item.active {
  background: #6c8ef5;
  color: #fff;
  border-radius: 0 25px 25px 0;
  /* round only right side */
}

.breadcrumb-btn-item.active::after {
  display: none;
  /* last one has no arrow */
}

/* Services Overview */
.services-overview {
  background: #f8fafc;
}

.service-overview-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-overview-card .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-overview-card .service-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-overview-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-overview-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Service Detail Sections */
.service-detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.service-detail-section:last-child {
  border-bottom: none;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.service-main-title {
  /* font-size: 2.5rem; */
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-main-description {
  font-size: 1.125rem;
  /* color: var(--text-secondary); */
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Service Pricing */
.service-pricing {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, rgba(219, 234, 254, 0.3) 100%);
  border-radius: 1rem;
}

.pricing-item {
  display: flex;
  flex-direction: column;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.pricing-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Service Actions */
.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service Images */
.service-image img {
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f8fafc 0%, rgba(219, 234, 254, 0.3) 100%);
}

.why-choose-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.why-choose-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  background: white;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, rgba(219, 234, 254, 0.3) 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
}

.faq-section .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-section .accordion-body {
  padding: 1.5rem;
  background: #f8fafc;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-main-title {
    font-size: 2rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .service-pricing {
    flex-direction: column;
    gap: 1rem;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-actions .btn {
    width: 100%;
  }

  .hero-stats {
    margin-top: 1rem;
  }

  .hero-stats .stat-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .service-main-title {
    font-size: 1.75rem;
  }

  .service-detail-section {
    padding: 2rem 0;
  }

  .digital-marketing-hero {
    padding: 1rem 0;
  }
}

/* Additional Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service Cards Hover Effects */
.service-overview-card:hover .service-icon {
  transform: scale(1.1);
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1);
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

/* Smooth Animations */
.service-overview-card,
.why-choose-card,
.process-step {
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-overview-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-overview-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-overview-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-choose-card:nth-child(1) {
  animation-delay: 0.1s;
}

.why-choose-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-choose-card:nth-child(3) {
  animation-delay: 0.3s;
}

.why-choose-card:nth-child(4) {
  animation-delay: 0.4s;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.process-step:nth-child(4) {
  animation-delay: 0.4s;
}