/* ===== ROOT BRAND COLORS ===== */
:root {
  --purple: #7b2cbf;
  --purple-light: #9d4edd;
  --purple-dark: #5a189a;
  --orange: #f77f00;
  --orange-light: #ff9e00;
  --orange-dark: #e76f00;
  --yellow: #fcbf49;
  --yellow-light: #ffd166;
  --yellow-dark: #f4a261;
  --gradient: linear-gradient(135deg, #7b2cbf, #f77f00);
  --gradient-yellow: linear-gradient(135deg, #fcbf49, #f77f00);
  --gradient-purple: linear-gradient(135deg, #7b2cbf, #9d4edd);
  --gradient-orange: linear-gradient(135deg, #f77f00, #ff9e00);
  --dark: #222;
  --light: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --medium-gray: #e5e7eb;
  --dark-gray: #374151;
  --success-green: #10b981;
  --warning-red: #ef4444;
  --info-blue: #3b82f6;
  --card-shadow: 0 6px 20px rgba(123, 44, 191, 0.1);
  --card-shadow-hover: 0 12px 25px rgba(123, 44, 191, 0.15);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background-color: var(--light-gray);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== HEADER ===== */
.navbar {
  background: var(--light);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 2px 10px rgba(123, 44, 191, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--purple);
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--gradient);
  padding: 3px;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.search-bar {
  flex: 1;
  max-width: 600px;
  display: flex;
  gap: 0.5rem;
}

.search-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 0.25rem;
  border: 2px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.search-wrapper:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.15);
}

.search-icon {
  color: var(--gray);
  padding: 0 0.75rem;
  font-size: 1rem;
}

.search-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  outline: none;
  color: var(--dark);
}

.search-wrapper button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-wrapper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.2);
}

.category-filter {
  padding: 0.5rem 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-lg);
  background: white;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter:focus {
  border-color: var(--purple);
  outline: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.delivery-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gradient-orange);
  color: white;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 127, 0, 0.2);
}

.delivery-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  color: var(--dark);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow-hover);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid var(--medium-gray);
}

.delivery-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 1rem;
  border: 8px solid transparent;
  border-bottom-color: white;
}

.delivery-badge:hover .delivery-tooltip {
  opacity: 1;
  visibility: visible;
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
}

/* ===== SAFETY CONTAINER ===== */
.safety-container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.safety-header {
  margin: 2rem 0 3rem;
}

.safety-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--gradient);
  border-radius: var(--radius-2xl);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.safety-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path fill="white" fill-opacity="0.05" d="M40,40 Q100,20 160,40 L160,160 Q100,180 40,160 Z"/></svg>');
  background-size: cover;
}

.safety-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.safety-hero .subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.safety-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
}

.safety-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.safety-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ===== SAFETY CONTENT ===== */
.safety-content {
  margin-bottom: 4rem;
}

.safety-intro {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.safety-intro:hover {
  border-color: var(--purple-light);
}

.safety-intro h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.emergency-contact {
  background: linear-gradient(to right, #fee2e2, #fef3c7);
  border-left: 4px solid var(--orange);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.emergency-contact:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(247, 127, 0, 0.15);
}

.emergency-contact i.fa-exclamation-triangle {
  color: var(--orange);
  font-size: 1.5rem;
}

/* ===== SAFETY GRID ===== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.safety-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border: 2px solid white;
  position: relative;
}

.safety-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--purple-light);
}

.safety-card:hover::before {
  opacity: 1;
}

.safety-card-header {
  padding: 1.5rem;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--medium-gray);
}

.safety-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--gradient-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.safety-card:hover .safety-icon {
  transform: scale(1.1) rotate(5deg);
}

.safety-icon.buyer { background: var(--gradient-yellow); }
.safety-icon.seller { background: var(--gradient-orange); }
.safety-icon.payment { background: linear-gradient(135deg, #7b2cbf, #5a189a); }
.safety-icon.prohibited { background: linear-gradient(135deg, #ef4444, #dc2626); }
.safety-icon.security { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.safety-card-header h3 {
  font-size: 1.25rem;
  color: var(--dark);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.safety-card-body {
  padding: 1.5rem;
}

.safety-list {
  list-style: none;
}

.safety-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.safety-list li:hover {
  background: var(--light-gray);
}

.safety-list li i {
  color: var(--purple);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.safety-sublist {
  list-style: none;
  margin: 0.5rem 0 0.5rem 1.5rem;
}

.safety-sublist li {
  margin-bottom: 0.25rem;
  color: var(--gray);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.safety-sublist li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.warning-box, .danger-box {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.warning-box {
  background: linear-gradient(to right, #fef3c7, #fde68a);
  border: 2px solid var(--yellow);
  color: #92400e;
}

.warning-box:hover {
  transform: translateX(5px);
}

.danger-box {
  background: linear-gradient(to right, #fee2e2, #fecaca);
  border: 2px solid var(--warning-red);
  color: #991b1b;
}

.danger-box:hover {
  transform: translateX(5px);
}

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.prohibited-category h4 {
  color: var(--warning-red);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prohibited-category ul {
  list-style: none;
}

.prohibited-category li {
  padding: 0.25rem 0;
  color: var(--gray);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.prohibited-category li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--warning-red);
  font-weight: bold;
}

.recommended-payments, .password-tips {
  background: var(--light-gray);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  border: 1px solid var(--medium-gray);
}

.recommended-payments h4, .password-tips h4 {
  color: var(--purple);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-methods, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-method, .tip {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--medium-gray);
  transition: all 0.2s ease;
}

.payment-method:hover, .tip:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(123, 44, 191, 0.1);
}

/* ===== MEETING GUIDELINES ===== */
.meeting-guidelines {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
  box-shadow: var(--card-shadow);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.meeting-guidelines:hover {
  border-color: var(--purple-light);
}

.meeting-guidelines h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.meeting-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.meeting-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.meeting-step:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: var(--card-shadow-hover);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.meeting-step:hover .step-number {
  transform: scale(1.1) rotate(10deg);
}

.meeting-step h4 {
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.meeting-step p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== REPORTING SECTION ===== */
.reporting-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  margin: 3rem 0;
  border: 2px solid var(--medium-gray);
  box-shadow: var(--card-shadow);
}

.reporting-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reporting-header h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.reporting-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reporting-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reporting-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reporting-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--purple-light);
}

.reporting-card:hover::before {
  transform: scaleX(1);
}

.reporting-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.reporting-card:hover i {
  transform: scale(1.1);
}

.reporting-card:nth-child(1) i { 
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
}

.reporting-card:nth-child(2) i { 
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
}

.reporting-card h4 {
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.reporting-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-primary, .btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid;
  font-size: 0.95rem;
  text-decoration: none;
  min-width: 140px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(123, 44, 191, 0.2);
}

.btn-outline {
  background: transparent;
  border-color: var(--medium-gray);
  color: var(--dark);
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(123, 44, 191, 0.1);
}

.response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 12px rgba(252, 191, 73, 0.15);
}

.response-time i {
  color: var(--orange);
  font-size: 1.5rem;
}

.response-time p strong {
  color: var(--purple);
}

/* ===== DISCLAIMER & UPDATES ===== */
.disclaimer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.disclaimer-card, .updates-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  border: 2px solid white;
  transition: all 0.3s ease;
  position: relative;
}

.disclaimer-card:hover, .updates-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
}

.disclaimer-card h3, .updates-card h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
}

.responsibility-note, .last-updated {
  background: var(--light-gray);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid var(--orange);
  transition: all 0.3s ease;
}

.responsibility-note:hover, .last-updated:hover {
  transform: translateX(5px);
}

.responsibility-note i {
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.last-updated i {
  color: var(--purple);
}

.subscribe-updates {
  margin-top: 1.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.subscribe-form input:focus {
  border-color: var(--purple);
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

/* ===== QUICK TIPS ===== */
.quick-tips {
  background: var(--gradient);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  color: white;
  margin: 3rem 0;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.quick-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" fill-opacity="0.05"/></svg>');
  background-size: 150px;
}

.quick-tips h2 {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  position: relative;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tip-item i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.tip-item span {
  font-weight: 500;
}

/* ===== REPORT MODAL ===== */
.report-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.report-content {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--purple-light);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.report-header h3 {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.close-report {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.close-report:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

#reportForm {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--purple);
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-group.checkbox input {
  width: auto;
}

.form-group small {
  display: block;
  margin-top: 0.25rem;
  color: var(--gray);
  font-size: 0.85rem;
}

.report-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.report-buttons button {
  flex: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  margin-top: auto;
  border-top: 4px solid var(--purple);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient);
  padding: 3px;
}

.footer p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.delivery-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  transition: all 0.3s ease;
}

.delivery-contact:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
}

.delivery-contact i {
  color: var(--yellow);
  font-size: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.footer-section a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-section a.active {
  color: var(--yellow);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.contact-info i {
  color: var(--yellow);
  width: 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form input:focus {
  border-color: var(--purple);
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  background: var(--gradient);
  color: white;
  border: none;
  width: 46px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .navbar {
    flex-wrap: wrap;
  }
  
  .search-bar {
    order: 3;
    flex: 1 0 100%;
    margin-top: 1rem;
  }
  
  .safety-hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .header-right {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
  }
  
  .safety-hero {
    padding: 2rem 1rem;
  }
  
  .safety-hero h1 {
    font-size: 1.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .safety-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .safety-grid {
    grid-template-columns: 1fr;
  }
  
  .meeting-steps {
    grid-template-columns: 1fr;
  }
  
  .reporting-content {
    grid-template-columns: 1fr;
  }
  
  .disclaimer-section {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .delivery-contact,
  .contact-info li,
  .footer-section a {
    justify-content: center;
  }
  
  .footer-section a:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .safety-hero h1 {
    font-size: 1.5rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .report-buttons {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.safety-card, .meeting-step, .reporting-card {
  animation: fadeInUp 0.5s ease backwards;
}

.safety-card:nth-child(1) { animation-delay: 0.1s; }
.safety-card:nth-child(2) { animation-delay: 0.2s; }
.safety-card:nth-child(3) { animation-delay: 0.3s; }
.safety-card:nth-child(4) { animation-delay: 0.4s; }
.safety-card:nth-child(5) { animation-delay: 0.5s; }
.safety-card:nth-child(6) { animation-delay: 0.6s; }

.meeting-step:nth-child(1) { animation-delay: 0.1s; }
.meeting-step:nth-child(2) { animation-delay: 0.2s; }
.meeting-step:nth-child(3) { animation-delay: 0.3s; }
.meeting-step:nth-child(4) { animation-delay: 0.4s; }

.reporting-card:nth-child(1) { animation-delay: 0.1s; }
.reporting-card:nth-child(2) { animation-delay: 0.2s; }
.reporting-card:nth-child(3) { animation-delay: 0.3s; }