body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #333;
  text-align: center;
  overflow-x: hidden;
}

/* Fade in animation for load */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Urgent red bar */
.urgent-bar {
  background: #ef4343;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.urgent-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
.urgent-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.countdown-box {
  background: #fff;
  color: #c70000;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(199, 0, 0, 0.4);
  animation: timerPulse 2s ease-in-out infinite;
}
@keyframes timerPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(199, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 25px rgba(199, 0, 0, 0.7);
  }
}

.offer-text {
  font-size: 0.9rem;
}

/* MAIN CONTENT */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}
.container h1 {
  font-size: 2.3rem;
  font-family: 'Playfair Display', serif;
  margin: 20px 0 10px;
  color: #272727;
  text-align: center;
}
.container p {
  line-height: 1.6;
  color: #555;
  font-size: 15px;
  text-align: center;
}
.main-img {
  width: 100%;
  border-radius: 15px;
  margin: 20px 0;
}

/* BLOCKQUOTE */
blockquote {
  border-left: 4px solid #c70000;
  padding-left: 15px;
  font-style: italic;
  margin: 20px 0;
  color: #444;
}

.recovered-section {
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  text-align: left;
}

.recovered-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.recovered-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.recovered-person img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 18px;
}

.recovered-person p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.badges {
  display: flex;
  justify-content: center;         /* centers the whole group */
  align-items: center;             /* vertically aligns icons & text */
  gap: 40px;                       /* controls spacing between each badge group */
  flex-wrap: wrap;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #444;
}

.badges span {
  display: inline-flex;
  align-items: center;             /* aligns icon and text in a row */
  gap: 8px;                        /* space between icon and its text */
}

.badges img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  vertical-align: middle;
}

/* ✅ Responsive layout for mobile */
@media (max-width: 600px) {
  .badges {
    flex-direction: column; /* stack vertically */
    gap: 15px; /* less spacing between items when stacked */
    text-align: center;
  }

  .badges span {
    justify-content: center;
  }
}


.recover-btn {
  background-color: #c9974d;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 35%;
  margin: 20px;
  transition: background 0.2s ease-in-out;
  display: block;
  margin: 0 auto; /* centers horizontally */
}


/* === Alert Box Container === */
.alert-box {
  background-color: #fff5f5; /* soft red background */
  border: 1px solid #f5c2c2; /* subtle red border */
  border-radius: 8px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  text-align: center;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.08);
}

/* === URGENT Title === */
.alert-title {
  font-weight: 700;
  font-size: 18px;
  color: #b71c1c; /* deep red text */
  margin-bottom: 15px;
}

.countdown-style3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d32f2f;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  gap: 6px;
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(179, 0, 0, 0.3);
}

.countdown-style3 .timer {
  font-weight: 700;
}

.countdown-style3 .claim-text {
  font-weight: 500;
}



/* === Warning Text === */
.alert-text {
  color: #b71c1c;
  font-size: 14px;
  margin-top: 15px;
}

/* Optional: Add subtle fade-in reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: revealBox 0.6s ease forwards;
}

@keyframes revealBox {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== FORM STYLING ===== */
.form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.form-box h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.form-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.form-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  color: #333;
}

.form-badges img {
  width: 16px;
  height: 16px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group.full {
  flex-basis: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #444;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #c39b62;
  box-shadow: 0 0 0 2px rgba(195, 155, 98, 0.2);
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Section Title */
h3 {
  font-size: 1.1rem;
  color: #222;
  margin: 25px 0 10px;
}

/* Consent box */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  margin: 10px 0 15px;
  line-height: 1.4;
  color: #555;
}

.form-consent input {
  margin-top: 3px;
}

/* Submit button */
.submit-btn {
  background: #c39b62;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}

.submit-btn:hover {
  background: #b48950;
}

.submit-btn:active {
  transform: scale(0.98);
}

.form-note {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
  color: #777;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .form-box {
    padding: 25px;
  }

  .form-box h2 {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }

  .form-badges {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .form-badges span {
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 12px;
  }

  .form-consent {
    font-size: 0.8rem;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .form-box {
    padding: 20px;
    border-radius: 8px;
  }

  .form-box h2 {
    font-size: 1.3rem;
  }

  .form-subtitle {
    font-size: 0.85rem;
  }

  .form-badges span {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  label {
    font-size: 0.85rem;
  }

  input,
  select,
  textarea {
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* COMMENTS */
.comments {
  margin-top: 40px;
}
.comment {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  margin: 10px 0;
}

.comment-box {
  display: flex;
  align-items: flex-start;
  background-color: #dddbdb;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  color: #000000;
  margin-bottom: 5px;
}

.username {
  font-weight: 600;
  color: #000000;
}

.comment-text {
  margin: 0;
  line-height: 1.5;
  color: #000000;
}


/* FOOTER */
footer {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
  font-family: Arial, sans-serif;
  color: #333;
}

.footer-logo {
  width: 100%;
  max-width: 800px;
  margin-bottom: 25px;
  border-radius: 10px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-item span img {
  width: 25px;
  height: 25px;
}

.icon-header {
  font-weight: bold;
  margin: 10px 0 5px;
  font-size: 1rem;
  color: #333;
}

.icon-text {
  font-size: 0.85rem;
  color: #666;
  max-width: 150px;
  margin: 0 auto;
}

footer hr {
  margin: 25px 0;
  border: 0;
  border-top: 1px solid #ccc;
}

footer p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 10px 0;
}

footer a {
  color: #caa772;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.75rem;
  margin-top: 15px;
  color: #555;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .urgent-bar {
    flex-direction: column;
    text-align: center;
  }
  .urgent-right {
    margin-top: 10px;
  }
  .container h1 {
    font-size: 1.5rem;
  }
}


/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Slight stagger feel */
.reveal:nth-child(odd) {
  transition-delay: 0.1s;
}
.reveal:nth-child(even) {
  transition-delay: 0.3s;
}

/* Pulsing Red Danger Sign */
#danger-pulse {
  display: inline-block;
  color: red;
  animation: dangerPulse 1.2s infinite;
}

@keyframes dangerPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 0, 0, 1);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
  }
}