/* Thanks Page Styles */

/* Hero Section */
.thanks-hero {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-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" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.thanks-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.thanks-hero .success-icon {
  font-size: 4rem;
  color: #4CAF50;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.thanks-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.thanks-hero .hero-description {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Confirmation Section */
.confirmation-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.confirmation-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
}

.confirmation-header {
  text-align: center;
  margin-bottom: 40px;
}

.confirmation-icon {
  font-size: 3rem;
  color: #2a5298;
  margin-bottom: 20px;
}

.confirmation-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0;
}

.confirmation-content {
  display: grid;
  gap: 30px;
}

.confirmation-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #2a5298;
}

.confirmation-item-icon {
  font-size: 1.8rem;
  color: #2a5298;
  margin-top: 5px;
  flex-shrink: 0;
}

.confirmation-item-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2a5298;
  margin-bottom: 10px;
}

.confirmation-item-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Next Steps Section */
.next-steps-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0f0f0;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: #2a5298;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2a5298;
  margin-bottom: 15px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-offices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.office-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 2px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: #2a5298;
}

.office-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.office-title i {
  font-size: 1.8rem;
}

.office-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.2rem;
  color: #2a5298;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-value {
  color: #666;
  line-height: 1.6;
  font-weight: 500;
}

/* Quick Actions Section */
.quick-actions-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
  text-align: center;
}

.actions-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.actions-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.actions-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
}

.btn-primary:hover {
  background: #ff5252;
  border-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  color: white;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: #74b9ff;
  color: white;
  border-color: #74b9ff;
}

.btn-secondary:hover {
  background: #0984e3;
  border-color: #0984e3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .thanks-hero {
    padding: 80px 0 60px;
  }
  
  .thanks-hero .hero-title {
    font-size: 2.2rem;
  }
  
  .thanks-hero .hero-description {
    font-size: 1.1rem;
  }
  
  .confirmation-card {
    padding: 30px 20px;
  }
  
  .confirmation-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-offices {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .office-card {
    padding: 25px 20px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .actions-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .thanks-hero .success-icon {
    font-size: 3rem;
  }
  
  .thanks-hero .hero-title {
    font-size: 1.8rem;
  }
  
  .confirmation-header h2 {
    font-size: 1.8rem;
  }
  
  .office-title {
    font-size: 1.3rem;
  }
  
  .actions-content h2 {
    font-size: 1.8rem;
  }
} 