/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Elements */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: -2;
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Hero Image Styles */
.hero-image {
  position: relative;
  margin-bottom: 25px;
}

.campus-image {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  /* border: 4px solid rgba(255, 255, 255, 0.4); */
  transition: all 0.3s ease;
}

.campus-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.overlay-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.overlay-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
}

.header-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.logo-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.tagline {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 20px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.indicator {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.official-badge {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.badge-text small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Credibility Section Styles */
.credibility-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.credibility-item {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.credibility-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.credibility-item h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 700;
}

.credibility-item p {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

.credibility-item:hover {
  background: white;
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.credibility-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

/* Status Banner */
.status-banner {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.status-icon {
  font-size: 1.5rem;
}

.status-time {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.status-banner.paused {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Option Cards */
.options-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.option-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.cash-card::before {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
}

.online-card::before {
  background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.card-header h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.currency-symbol {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  color: #667eea;
}

.amount-input {
  width: 100%;
  padding: 15px 15px 15px 40px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.amount-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.whatsapp-btn {
  width: 100%;
  padding: 15px 25px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-icon {
  font-size: 1.2rem;
}

.service-stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #666;
}

.service-stats span {
  background: rgba(102, 126, 234, 0.1);
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 500;
}

.input-hint {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 5px;
}

/* Fee Section */
.fee-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

.fee-table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.fee-table th,
.fee-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #f1f3f4;
}

.fee-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-amount {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.1rem;
}

.processing-time {
  color: #3498db;
  font-weight: 600;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial:hover {
  background: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.student-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #667eea;
  flex-shrink: 0;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.student-info strong {
  color: #2c3e50;
  font-size: 0.95rem;
}

.student-info span {
  color: #666;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 5px;
}

.rating {
  font-size: 0.9rem;
}

/* Meeting Points */
.meeting-points {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.meeting-point {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.meeting-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.security-indicator {
  /* position: absolute; */
  top: 10px;
  left: 10px;
  background: rgba(46, 204, 113, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.point-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.meeting-point:hover {
  background: white;
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.point-stats {
  font-size: 0.8rem;
  color: #27ae60;
  font-weight: 600;
  margin-top: 8px;
}

.meeting-point h4 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.meeting-point p {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.important-note {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 2px solid #f39c12;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.note-content {
  color: #856404;
  font-weight: 500;
  line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.action-btn {
  padding: 20px 25px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-contact {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
}

.updates-channel {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.action-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.btn-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Credits Section Styles */
.credits-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.credit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.credit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.credit-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.credit-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 2px;
}

.credit-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.credit-link:hover {
  color: #4facfe;
  text-shadow: 0 0 8px rgba(79, 172, 254, 0.5);
}

.credit-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-top: 2px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-main h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-stats {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-contact h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #4facfe;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4facfe;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Configuration Notice */
.config-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.config-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.config-content h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.config-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.config-content li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #555;
}

.config-content code {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #e74c3c;
}

.config-close {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.config-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Input Styles for Name and Roll Number */
.name-input,
.roll-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.name-input:focus,
.roll-input:focus {
  outline: none;
  border-color: #1da1f2;
  box-shadow: 0 0 0 3px rgba(29, 161, 242, 0.1);
  background: rgba(255, 255, 255, 1);
}

.roll-input.invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.roll-input.valid {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

.validation-message {
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.validation-message.error {
  color: #e74c3c;
}

.validation-message.success {
  color: #27ae60;
}

/* Added styles for auto-detected information display */
.auto-detected-info {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px;
  margin-top: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.auto-detected-info .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.auto-detected-info .info-item:last-child {
  margin-bottom: 0;
}

.auto-detected-info .info-label {
  font-weight: 600;
  color: #495057;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auto-detected-info .info-value {
  font-weight: 700;
  color: #2c3e50;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #e9ecef;
  min-width: 60px;
  text-align: center;
  font-family: "Courier New", monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .header h1 {
    font-size: 2.2rem;
  }

  .logo-section {
    flex-direction: column;
    gap: 10px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 10px;
  }

  .options-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meeting-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }

  .action-buttons {
    grid-template-columns: 1fr;
  }

  .important-note {
    flex-direction: column;
    text-align: center;
  }

  .campus-image {
    height: 200px;
  }

  .credibility-image,
  .meeting-image {
    height: 120px;
  }

  .credits-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .credit-item {
    justify-content: center;
  }

  .security-badges {
    flex-direction: column;
    gap: 15px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-stats {
    justify-content: center;
  }

  .service-stats {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 25px 20px;
  }

  .option-card {
    padding: 25px 20px;
  }

  .fee-section,
  .meeting-points,
  .credibility-section {
    padding: 25px 20px;
  }

  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .campus-image {
    height: 150px;
  }

  .credibility-image,
  .meeting-image {
    height: 100px;
  }

  .credits-section {
    gap: 15px;
  }

  .credit-item {
    padding: 10px 16px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 30px;
  }

  .options-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .credibility-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .meeting-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .action-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .header h1 {
    font-size: 3.2rem;
  }

  .campus-image {
    height: 350px;
  }

  .credits-section {
    gap: 60px;
  }
}

/* Screen reader only utility class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
