/* 
 * Display Advertising Page Styles
 * Contains all styles specific to the display advertising service page
 */

/* Hero section */
.display-advertising-hero {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.display-advertising-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.display-advertising-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Ad formats section */
.ad-formats {
  padding: 5rem 0;
}

.ad-formats h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.format-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.format-card:hover {
  transform: translateY(-10px);
}

.format-card .format-image {
  height: 200px;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.format-card .format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.format-card:hover .format-image img {
  transform: scale(1.05);
}

.format-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.format-card .format-specs {
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.format-card .format-specs span {
  display: block;
  margin-bottom: 0.5rem;
}

/* Targeting options section */
.targeting-options {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.targeting-options h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.targeting-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.targeting-card:hover {
  transform: translateY(-10px);
}

.targeting-card .targeting-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.targeting-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* Campaign process section */
.campaign-process {
  padding: 5rem 0;
}

.campaign-process h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

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

.process-timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #e9ecef;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #0056b3;
  border: 4px solid #fff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #0056b3;
  margin-bottom: 1rem;
}

/* Performance metrics section */
.performance-metrics {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.performance-metrics h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.metric-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.metric-card .metric-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0056b3;
}

.metric-card h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* Case studies section */
.display-advertising-case-studies {
  padding: 5rem 0;
}

.display-advertising-case-studies h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.case-study-slider {
  position: relative;
}

.case-study-slide {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}

.case-study-image {
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 2rem;
}

.case-study-content h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.case-study-content .client {
  color: #6c757d;
  margin-bottom: 1rem;
}

.case-study-content .results {
  margin-bottom: 1.5rem;
}

.case-study-content .result-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.case-study-content .result-item i {
  color: #28a745;
  margin-right: 0.5rem;
}

/* Pricing section */
.display-advertising-pricing {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.display-advertising-pricing h2 {
  margin-bottom: 3rem;
  text-align: center;
  color: #0056b3;
}

.pricing-card {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid #0056b3;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .pricing-header {
  margin-bottom: 2rem;
}

.pricing-card .pricing-header h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

.pricing-card .pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0056b3;
}

.pricing-card .pricing-period {
  color: #6c757d;
  margin-bottom: 2rem;
}

.pricing-card .pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.pricing-card .pricing-features li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e9ecef;
}

.pricing-card .pricing-features li:last-child {
  border-bottom: none;
}

/* CTA section */
.display-advertising-cta {
  background-color: #0056b3;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.display-advertising-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.display-advertising-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.display-advertising-cta .btn-light {
  padding: 0.75rem 2rem;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .display-advertising-hero h1 {
    font-size: 2.5rem;
  }
  
  .display-advertising-hero p {
    font-size: 1.1rem;
  }
  
  .process-timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-item::after {
    left: 18px;
    right: auto;
  }
  
  .timeline-item.right::after {
    left: 18px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .display-advertising-cta h2 {
    font-size: 2rem;
  }
  
  .display-advertising-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .display-advertising-hero h1 {
    font-size: 2rem;
  }
  
  .format-card .format-image {
    height: 150px;
  }
  
  .case-study-image {
    height: 150px;
  }
}