/* 
 * Account-Based Marketing Page Styles
 * Contains all styles specific to the ABM service page
 */

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

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

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

/* What is ABM section */
.abm-intro {
  padding: 5rem 0;
}

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

.abm-intro-content {
  margin-bottom: 3rem;
}

.abm-intro-image {
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits section */
.abm-benefits {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

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

.benefit-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;
}

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

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

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

/* ABM framework section */
.abm-framework {
  padding: 5rem 0;
}

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

.framework-step {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.framework-step .step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #0056b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

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

/* Target accounts section */
.abm-targeting {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

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

.targeting-method {
  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%;
}

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

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

/* ABM tactics section */
.abm-tactics {
  padding: 5rem 0;
}

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

.tactic-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;
}

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

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

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

/* Measurement section */
.abm-measurement {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

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

.metric-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%;
}

.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 */
.abm-case-studies {
  padding: 5rem 0;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

/* Responsive styles */
@media (max-width: 991.98px) {
  .abm-hero h1 {
    font-size: 2.5rem;
  }
  
  .abm-hero p {
    font-size: 1.1rem;
  }
  
  .abm-cta h2 {
    font-size: 2rem;
  }
  
  .abm-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .abm-hero h1 {
    font-size: 2rem;
  }
  
  .framework-step .step-number {
    position: static;
    margin-bottom: 1rem;
  }
  
  .case-study-image {
    height: 150px;
  }
}