/* ===================================================
   CONNECT 2 — Modern redesign
   =================================================== */

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

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

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

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

.c2-hero-sub {
  font-family: 'Hind', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   CONTACT CARDS
   =================================================== */
.c2-cards-section {
  background: #f4f6f7;
  padding: 80px 30px;
}

.c2-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 780px;
  margin: 0 auto;
}

.c2-card {
  background: #fff;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.c2-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.c2-card-icon {
  font-size: 42px;
  color: #48c7ec;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.c2-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 12px;
}

.c2-card-value {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #10252e;
  display: block;
  line-height: 1.4;
  text-decoration: none;
  word-break: break-word;
}

.c2-card-value:hover {
  color: #48c7ec;
}

/* ===================================================
   CLOSING MESSAGE
   =================================================== */
.c2-message-section {
  background: #fff;
  padding: 80px 30px;
  text-align: center;
}

.c2-message-inner {
  max-width: 640px;
  margin: 0 auto;
}

.c2-message-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: #10252e;
  margin-bottom: 20px;
  line-height: 1.4;
}

.c2-message-body {
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 36px;
}

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

.c2-btn:hover {
  background: transparent;
  color: #48c7ec;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 600px) {
  .c2-hero-heading { font-size: 38px; }
  .c2-cards-grid { grid-template-columns: 1fr; max-width: 360px; }
  .c2-card { padding: 40px 28px; }
}
