/* ================= GLOBAL ================= */
body {
  font-family: "Inter", sans-serif;
  background: #fff0d9;
  color: #2a2a2a;
}

/* ================= HERO ================= */
.award-banner img{
    width: 100%;
}

.award-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.award-hero img.logo {
  max-width: 360px;
  margin-bottom: 22px;
}

.award-hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
}

.award-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 25px;
}

.btn-nmt{
    text-align: center;
    margin-top: 70px;
}

.btmbtn{
	margin-bottom: 50px;
}

/* CTA */
.btn-nominate {
      background: linear-gradient(135deg, #ed831c, #e07410);
    color: #fff;
     padding: 20px 40px;
    border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.btn-nominate:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  color: #fff;
}

/* ================= SECTIONS ================= */
.award-section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ed831c;
  margin-bottom: 40px;
  text-align: center;
}

/* ================= CARDS ================= */
.award-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(192,137,43,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

/* Narrow layout */
.award-narrow {
  margin: auto;
}

/* ================= IMPORTANT DATES ================= */
.date-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(192,137,43,0.25);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.date-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.date-box h4 {
  font-weight: 700;
  color: #7a5322;
}

/* ================= LIST ================= */
.award-list {
  list-style: none;
  padding-left: 0;
}

.award-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.award-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 1.3rem;
}

/* ================= FEES ================= */
.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(192,137,43,0.35);
  font-weight: 600;
}


/* ================= NOMINATION CARDS ================= */
.nomination-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 28px;
  height: 100%;

  border: 2px solid #c0892b;

  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  transition: all 0.35s ease;
  text-align: center;
}

/* ❌ REMOVE LIFT FROM FEATURED CARD */
.nomination-card.featured {
  transform: none;
}

/* Hover effect (same for all cards) */
.nomination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
}

/* Title */


.nomination-card .option-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.nomination-card .option-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 60px;
  height: 3px;
  background: #c0892b;   /* same gold theme */
  border-radius: 2px;
}

.nomination-card h4 {
  font-weight: 800;
  color: #7a5322;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Option text */
.nomination-card h4 span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #c0892b;
  margin-top: 4px;
}

/* Benefits heading */
.nomination-card h6 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Benefits list */
.nomination-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.nomination-card ul li {
  font-size: 1.05rem; /* 🔥 Increased font size */
  margin-bottom: 8px;
  color: #333;
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.nomination-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c0892b;
  font-size: 1.4rem;
  top: -2px;
}

/* Price */
.price-box {
  background: #7a5322;
  color: #fff;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nomination-card.featured {
    transform: none;
  }
}


/* ================= CATEGORIES ================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.category-item {
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(192,137,43,0.25);
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 70px 0;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(192,137,43,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

.contact-card h5 {
  color: #1e7838;
  font-weight: 700;
}

.contact-card a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .award-hero h1 { font-size: 2rem; }
  .award-hero img.logo { max-width: 260px; }
}