/* --- Reset & base styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overlay + image */
  background:
    /* top layer: black at 60% opacity */
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    /* bottom layer: your image */
    url('background.jpg') center/cover no-repeat;
  font-family: 'Montserrat', sans-serif;
  backdrop-filter: blur(3px);
}

/* --- Card container --- */
.contact-card {
  width: 350px;
  background: rgba(220,248,239,0.75);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(25px);
  color: #142424;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  height: 60%;
}

/* --- Header --- */
.card-header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}
.logo-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem;
  background: #1ec28b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  max-width: 95%;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.company-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}
.company-tagline {
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* --- Buttons --- */
.action-btns {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}
.btn-orange {
  background: #1ec28b;
  color: #fff;
}
.btn-orange-outline {
  background: transparent;
  color: #1ec28b;
  border: 2px solid #1ec28b;
}
.btn-circle {
  background: #1ec28b;
  color: #fff;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* --- Body --- */
.card-body {
  padding: 1.5rem 2rem;
}
.section-title {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.about-text {
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 1rem;
  text-align: justify;
}

/* social icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
  /* border-top: 1px solid rgba(24, 23, 23, 0.3); */
  /* padding-top: 1rem; */
}
.social-icons a {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.85;
  
}
.social-icons a:hover {
  opacity: 1;
}

/* contact info */
.contact-info {
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(44, 44, 44, 0.3);
  padding-bottom: 0.5rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-info i {
  width: 16px;
}

/* --- Footer nav --- */
.card-footer {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.footer-link {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer-link.active {
  color: #fff;
  background: rgba(0,0,0,0.2);
}
