/* =======================
    SECTIUNE CONTACT
    ======================= */
.contact__section {
  background-color: #f0f7fa;
  padding: 0 20px;
  text-align: center;
  flex: 1;
}

.contact__section h2 {
  font-size: 1.8rem;
  color: #1b3c88;
  margin-bottom: 40px;
}

/* =======================
    CONTAINER CARDURI
    ======================= */
.contact__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
}

/* =======================
    CARD INDIVIDUAL
    ======================= */
.contact__card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* =======================
    NUME ORAS SI SEPARATOR
    ======================= */
.contact__card h3 {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #368ed6;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.city-separator {
  border: none;
  height: 2px;
  width: 80%;
  background: linear-gradient(90deg, #368ed6 0%, rgba(54, 142, 214, 0.3) 100%);
  margin: 6px 0 15px 0;
  border-radius: 5px;
}

/* =======================
    INFORMATII CONTACT
    ======================= */
.contact__card .contact__info {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__card .contact__info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1b3c88;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.contact__card .contact__info a:hover {
  background-color: rgba(54, 142, 214, 0.1);
  color: #368ed6;
  transform: scale(1.02);
}

/* =======================
    ICONITE IN CARD
    ======================= */
.contact__card .icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.contact__card .icon:hover {
  transform: scale(1.2);
}

/* =======================
    STILURI GENERALE
    ======================= */
html,
body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
