:root {
  --primary: #c20000;
  --light: #f9f9f9;
  --dark: #222;
  --accent: #ffe5e5;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*----------------------*/

.offer-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.offer-container h1 {
  font-size: 2.5rem;
  color: #c20000;
  margin-bottom: 10px;
}

.offer-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.offer-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item i {
  font-size: 2rem;
  color: #c20000;
  margin-bottom: 15px;
}

.offer-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.offer-item p {
  font-size: 0.95rem;
  color: #555;
}

.offer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.center-item {
  max-width: 600px;
  margin: 0 auto 40px;
}

.apply-btn-container,
.back-btn-container {
  margin: 20px 10px;
}

.apply-btn,
.back-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.apply-btn {
  background-color: #c20000;
  color: white;
}

.apply-btn:hover {
  background-color: #a30000;
}

.back-btn {
  background-color: #ddd;
  color: #333;
}

.back-btn:hover {
  background-color: #bbb;
}

.apply-btn i,
.back-btn i {
  margin-right: 8px;
}


/*----------------------*/
.footer {
  background-color: white;
  padding: 40px 20px 20px;
  border-top: 2px solid #c20000; /* line merah */
}

.footer-top {
  text-align: center;
  margin-bottom: 30px;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}
.footer-description {
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 20px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 18px;
}
.social-icons a {
  color: #c20000;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.footer-column h3 {
  color: #c20000;
  margin-bottom: 10px;
}
.footer-column a {
  display: inline-block;
  margin: 4px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a {
  display: block;
  margin: 6px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #c20000;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #c20000;
  transform: translateX(4px);
}

.footer-column a:hover::after {
  width: 100%;
}


.footer-rights {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  color: #777;
}



