/* ===== QUICK BUZZ MEDIA - SERVICE PAGE COMMON STYLES ===== */
:root {
  --red: #e8151b; --dark-red: #c01015;
  --white: #ffffff; --light-gray: #f7f7f7;
  --dark: #1a1a1a; --text: #444444;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px; background: var(--red); border-radius: 50%; opacity: 0.1;
}
.page-hero h1 { font-size: 52px; font-weight: 800; color: white; margin-bottom: 15px; position: relative; z-index: 2; }
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 18px; color: #aaa; max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb-bar { background: var(--red); padding: 10px 0; text-align: center; }
.breadcrumb-bar span, .breadcrumb-bar a { color: white; font-size: 14px; text-decoration: none; }
.breadcrumb-bar .sep { margin: 0 8px; }
.section-tag {
  display: inline-block; background: rgba(232,21,27,0.1); color: var(--red);
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 15px;
}
.section-title { font-size: 38px; font-weight: 800; color: var(--dark); line-height: 1.25; margin-bottom: 10px; }
.section-title span { color: var(--red); }
.section-header { text-align: center; margin-bottom: 50px; }
.service-intro { padding: 80px 0; background: white; }
.intro-row { display: flex; gap: 60px; align-items: center; }
.intro-text { flex: 1; }
.intro-img { flex: 1; }
.intro-img img { width: 100%; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.intro-img .img-placeholder {
  width: 100%; height: 380px; border-radius: 14px;
  background: linear-gradient(135deg, #f7f7f7, #ececec);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.intro-text p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 15px; }
.intro-text ul { list-style: none; padding: 0; margin: 20px 0; }
.intro-text ul li { padding: 10px 0; font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.intro-text ul li::before { content: '✓'; color: white; background: var(--red); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.btn-red {
  display: inline-block; background: var(--red); color: white;
  padding: 14px 35px; border-radius: 50px; font-size: 16px;
  font-weight: 700; text-decoration: none; margin-top: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 20px rgba(232,21,27,0.4);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,21,27,0.5); }
.process-section { padding: 80px 0; background: var(--light-gray); }
.process-steps { display: flex; gap: 20px; flex-wrap: wrap; }
.step-card {
  flex: 1; min-width: 200px; background: white; border-radius: 16px;
  padding: 30px 25px; text-align: center; position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07); transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-5px); }
.step-num {
  width: 50px; height: 50px; background: var(--red); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; margin: 0 auto 15px;
}
.step-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }
.features-section { padding: 80px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card {
  background: var(--light-gray); border-radius: 16px; padding: 30px;
  border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.feature-icon { font-size: 36px; margin-bottom: 15px; }
.feature-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin: 0; }
.pricing-section { padding: 80px 0; background: var(--light-gray); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pricing-card {
  background: white; border-radius: 20px; padding: 40px 30px;
  text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  position: relative; transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.popular { border: 2px solid var(--red); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; padding: 5px 20px;
  border-radius: 20px; font-size: 13px; font-weight: 700; white-space: nowrap;
}
.pricing-card h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pricing-price { font-size: 40px; font-weight: 800; color: var(--red); margin: 15px 0 5px; }
.pricing-price span { font-size: 18px; }
.pricing-desc { font-size: 14px; color: #888; margin-bottom: 25px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.pricing-features li { padding: 8px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 700; }
.service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  text-align: center;
}
.service-cta h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 15px; }
.service-cta p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.btn-white {
  display: inline-block; background: white; color: var(--red);
  padding: 14px 40px; border-radius: 50px; font-size: 16px;
  font-weight: 700; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s; margin: 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-outline-white {
  display: inline-block; border: 2px solid white; color: white;
  padding: 13px 35px; border-radius: 50px; font-size: 16px;
  font-weight: 700; text-decoration: none; margin: 5px;
  transition: background 0.3s, color 0.3s;
}
.btn-outline-white:hover { background: white; color: var(--red); }
@media(max-width: 768px) {
  .page-hero h1 { font-size: 32px; }
  .intro-row { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .section-title { font-size: 28px; }
}
