/* Donor Policy Page Specific Styles */

/* Page Header for Policy */
.page-header {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  margin-top: 70px;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("slider-3.jpg") center/cover;
  opacity: 0.15;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(22, 33, 62, 0.3) 100%
  );
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-header p {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

/* Quick Navigation Section */
.quick-nav-section {
  padding: 60px 0;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.quick-nav-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  padding: 35px;
}

.quick-nav-container h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.quick-nav-item {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.quick-nav-item::before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

.quick-nav-item:hover {
  background: rgba(255, 193, 7, 0.2);
  transform: translateX(5px);
  border-color: var(--primary-color);
}

/* Policy Content Section */
.policy-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.policy-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.1);
  border-radius: 25px;
  padding: 60px;
}

.policy-section {
  margin-bottom: 60px;
  scroll-margin-top: 150px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 800;
  margin-right: 15px;
  font-size: 20px;
}

.policy-section h2 {
  color: var(--primary-color);
  font-size: 34px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.policy-section h3 {
  color: var(--primary-light);
  font-size: 26px;
  margin: 35px 0 20px;
  padding-left: 20px;
  border-left: 4px solid var(--primary-color);
}

.policy-section h4 {
  color: rgba(255, 193, 7, 0.9);
  font-size: 20px;
  margin: 25px 0 15px;
  padding-left: 15px;
}

.policy-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.section-intro {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.note-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.policy-list {
  list-style: none;
  margin: 25px 0;
  padding-left: 0;
}

.policy-list li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 1.7;
  font-size: 16px;
}

.policy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 20px;
}

/* Donor Table */
.donor-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.donor-table thead {
  background: rgba(255, 193, 7, 0.2);
}

.donor-table th {
  padding: 20px;
  text-align: left;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid rgba(255, 193, 7, 0.3);
}

.donor-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.donor-table tbody tr {
  transition: all 0.3s ease;
}

.donor-table tbody tr:hover {
  background: rgba(255, 193, 7, 0.1);
}

.donor-table .category-name {
  font-weight: 700;
  color: var(--primary-light);
  font-size: 16px;
}

/* Highlight Boxes */
.highlight-box {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 25px;
  margin: 30px 0;
  border-radius: 12px;
  display: flex;
  align-items: start;
  gap: 20px;
}

.highlight-box.warning {
  background: rgba(255, 152, 0, 0.1);
  border-left-color: #ff9800;
}

.highlight-box.info {
  background: rgba(33, 150, 243, 0.1);
  border-left-color: #2196f3;
}

.box-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.box-content h4 {
  color: var(--primary-color);
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.box-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}

.benefit-card h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin: 0 0 15px 0;
  padding: 0;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card ul li {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

.benefit-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 20px;
}

/* Contact Info Box */
.contact-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.contact-item {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: start;
  gap: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 193, 7, 0.15);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 15px;
}

/* Policy CTA Section */
.policy-cta-section {
  padding: 80px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.policy-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content-center {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-center h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content-center p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--dark-bg);
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
  .page-header h1 {
    font-size: 42px;
  }

  .policy-content {
    padding: 40px 30px;
  }

  .policy-section h2 {
    font-size: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-number {
    margin-bottom: 10px;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .donor-table {
    font-size: 14px;
  }

  .donor-table th,
  .donor-table td {
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .page-header h1 {
    font-size: 32px;
  }

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

  .policy-content {
    padding: 30px 20px;
  }

  .policy-section h2 {
    font-size: 24px;
  }

  .policy-section h3 {
    font-size: 22px;
  }

  .cta-content-center h2 {
    font-size: 32px;
  }

  .contact-info-box {
    grid-template-columns: 1fr;
  }
}
