/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
      rgba(255, 255, 255, 0.55),
      rgba(251, 27, 27, 0.55)
    ),
    url("assets/img/landing-bg.jpg") center / cover no-repeat fixed;
  color: #fff;
  padding: 40px 20px;
}

/* HEADER */
.page-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease forwards;
}

.logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: 38px;
  color: #050505;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* ACTION BUTTON */
.action-button {
  display: inline-block;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #f43030;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-button:hover {
  background: transparent;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* GRID */
.container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* CARD */
.branch-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeInUp 1.2s ease forwards;
  transition: transform 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-6px);
}

/* TITLE */
.branch-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #010101;
}

/* INFO */
.branch-info {
  font-size: 14px;
  color: #000000;
}

.branch-info ol {
  list-style: none;
}

.branch-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.5;
}

.icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 3px;
  opacity: 0.8;
}

/* LINKS */
.branch-info a {
  color: #000000;
  text-decoration: none;
}

.branch-info a:hover {
  text-decoration: underline;
}

/* DIRECTION BUTTON */
.direction-btn {
  margin-top: 18px;
  padding: 12px;
  border-radius: 30px;
  border: 2px solid #f43030;
  background: transparent;
  color: #040404;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.direction-btn:hover {
  background: #f90909;
  color: #000;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 30px;
  }

  .page-header p {
    font-size: 16px;
  }
}
