/* ── Infos Section ── */
.infos-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.infos-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.infos-text h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}

.infos-text h2 strong {
  color: var(--o);
}

.infos-text p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 15px;
}

.hours-box {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--r-lg);
  margin: 25px 0;
}

.hrow {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.hrow:last-child {
  border: none;
}

.hrow span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.hrow i {
  color: var(--o);
}

.infos-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-o,
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--t);
}

.btn-o {
  background: var(--o);
  color: white;
}

.btn-o:hover {
  background: var(--o-dk);
  box-shadow: var(--sh-o);
}

.btn-wa {
  background: var(--wa);
  color: white;
}

.btn-wa:hover {
  background: var(--wa-dk);
  box-shadow: var(--sh-wa);
}

.contact-cards {
  display: grid;
  gap: 15px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--r-lg);
  transition: var(--t);
}

.ccard:hover {
  background: var(--white);
  box-shadow: var(--sh);
  transform: translateX(5px);
}

.cc-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ccard strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}

.ccard span,
.ccard a {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* ── Footer ── */
.footer {
  background: var(--ink2);
  color: white;
  padding: 80px 0 0;
}

.fg {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.fb-brand p {
  color: rgba(255, 255, 255, .6);
  margin: 20px 0;
  max-width: 300px;
}

.flogo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fsoc {
  display: flex;
  gap: 12px;
}

.fsoc a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--t);
}

.fsoc a:hover {
  background: var(--o);
  transform: translateY(-3px);
}

.fc h4 {
  font-family: var(--fh);
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--o);
}

.fcats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fcl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 600;
  transition: var(--t);
  text-align: left;
}

.fcl:hover {
  color: white;
  transform: translateX(5px);
}

.finf {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.finf li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.5;
}

.finf i {
  color: var(--o);
  margin-top: 4px;
}

.finf a:hover {
  color: white;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}
