/* ===================================================
   FEEDBACK 2 — Modern redesign
   =================================================== */

/* ===================================================
   HERO STRIP
   =================================================== */
.f2-hero {
  background: #10252e;
  padding: 80px 30px;
  text-align: center;
  position: relative;
}

.f2-hero::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #48c7ec;
  margin: 40px auto 0;
}

.f2-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #48c7ec;
  display: block;
  margin-bottom: 18px;
}

.f2-hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin: 0;
  line-height: 1.15;
}

/* ===================================================
   FEATURED QUOTE
   =================================================== */
.f2-featured {
  background: #fff;
  padding: 90px 30px;
}

.f2-featured-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.f2-featured-mark {
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 0.6;
  color: #48c7ec;
  display: block;
  margin-bottom: 30px;
  opacity: 0.5;
  user-select: none;
}

.f2-featured-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: #10252e;
  line-height: 1.8;
  margin: 0;
}

.f2-featured-rule {
  width: 40px;
  height: 2px;
  background: #48c7ec;
  border: none;
  margin: 40px auto 0;
}

/* ===================================================
   TESTIMONIAL CARD GRID
   =================================================== */
.f2-grid-section {
  background: #f4f6f7;
  padding: 80px 30px 90px;
}

.f2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.f2-card {
  background: #fff;
  padding: 44px 40px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.f2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #48c7ec;
}

.f2-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.f2-card-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
  color: #48c7ec;
  display: block;
  margin-bottom: 20px;
  opacity: 0.45;
  user-select: none;
}

.f2-card-text {
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin: 0;
  flex: 1;
}

/* ===================================================
   CTA STRIP
   =================================================== */
.f2-cta {
  background: #10252e;
  padding: 70px 30px;
  text-align: center;
}

.f2-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: #fff;
  margin: 0 0 32px 0;
}

.f2-btn {
  display: inline-block;
  padding: 15px 50px;
  background: transparent;
  border: 2px solid #48c7ec;
  color: #48c7ec;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.f2-btn:hover {
  background: #48c7ec;
  color: #10252e;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  .f2-hero-heading { font-size: 36px; }
  .f2-featured-text { font-size: 17px; }
  .f2-featured-mark { font-size: 100px; }
  .f2-grid { grid-template-columns: 1fr; }
}
