
/* Thank You Page Styles */

/* Hero Section */
.thankyou-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.thankyou-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-content-thankyou {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-content-thankyou h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-content-thankyou h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Countdown Container */
.countdown-container {
  background: rgba(255, 255, 255, 0.95);
  color: #1a202c;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.countdown-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  z-index: 1;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.phone-icon {
  font-size: 2.5rem;
  animation: phoneRing 2s ease-in-out infinite;
}

.countdown-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.time-unit {
  text-align: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  min-width: 100px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.time-unit span {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.time-unit label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.time-separator {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  animation: blink 1s infinite;
}

.countdown-message {
  text-align: center;
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  border-left: 4px solid #dc2626;
}

.countdown-message p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.countdown-message p:first-child {
  color: #dc2626;
  font-weight: 600;
}

/* Next Steps */
.next-steps {
  margin-top: 3rem;
}

.next-steps h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 2rem;
  background: 
    linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f1f5ff 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #764ba2 0%, transparent 100%);
  transform: skewY(-2deg);
  z-index: 0;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-container h2 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a202c;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 5rem;
  font-weight: 400;
  line-height: 1.6;
}

.review-platform {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.review-platform:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 15px 35px rgba(102, 126, 234, 0.15);
}

.trustpilot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #00b67a, #00d084);
  border-radius: 24px 24px 0 0;
}

.google::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 24px 24px 0 0;
}

.platform-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.platform-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.trustpilot-text {
  color: #00b67a;
}

.google-text {
  color: #4285f4;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars .star {
  font-size: 1.5rem;
  color: #fbbf24;
}

.google-stars .star {
  color: #34a853;
}

.rating-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.score {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
}

.review-count {
  color: #6b7280;
  font-weight: 500;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.review-slide {
  display: none;
  animation: slideIn 0.5s ease-in-out;
}

.review-slide.active {
  display: block;
}

.review-content {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.review-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
}

.review-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #374151;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.reviewer strong {
  color: #1a202c;
  font-weight: 600;
}

.review-date {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Slider Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #667eea;
  transform: scale(1.2);
}

/* Final Reminder */
.final-reminder {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-reminder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 0;
}

.reminder-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.pulse-phone {
  font-size: 4rem;
  animation: pulse 2s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

.reminder-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reminder-content p {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.warning-text {
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-15deg); }
  20%, 40%, 60%, 80% { transform: rotate(15deg); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .rating-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .thankyou-hero {
    padding: 4rem 2rem 3rem;
    min-height: 90vh;
  }
  
  .hero-content-thankyou h1 {
    font-size: 3rem;
  }
  
  .hero-content-thankyou h2 {
    font-size: 1.5rem;
  }
  
  .countdown-container {
    padding: 2.5rem 2rem;
  }
  
  .countdown-header h3 {
    font-size: 1.25rem;
  }
  
  .time-unit {
    min-width: 80px;
    padding: 1.25rem 1.5rem;
  }
  
  .time-unit span {
    font-size: 2.5rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reviews-section {
    padding: 6rem 2rem;
  }
  
  .reviews-container h2 {
    font-size: 2.5rem;
  }
  
  .review-platform {
    padding: 2.5rem 2rem;
  }
  
  .review-content {
    padding: 2rem;
  }
  
  .final-reminder {
    padding: 3rem 2rem;
  }
  
  .reminder-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .thankyou-hero {
    padding: 3rem 1.5rem 2rem;
  }
  
  .hero-content-thankyou h1 {
    font-size: 2.5rem;
  }
  
  .hero-content-thankyou h2 {
    font-size: 1.3rem;
  }
  
  .countdown-container {
    padding: 2rem 1.5rem;
  }
  
  .countdown-timer {
    gap: 0.5rem;
  }
  
  .time-unit {
    min-width: 70px;
    padding: 1rem;
  }
  
  .time-unit span {
    font-size: 2rem;
  }
  
  .time-unit label {
    font-size: 0.75rem;
  }
  
  .countdown-header h3 {
    font-size: 1.1rem;
  }
  
  .phone-icon {
    font-size: 2rem;
  }
  
  .countdown-message p {
    font-size: 1rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .reviews-container h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  .review-platform {
    padding: 2rem 1.5rem;
  }
  
  .review-content {
    padding: 1.5rem;
  }
  
  .review-content h4 {
    font-size: 1.2rem;
  }
  
  .review-content p {
    font-size: 1rem;
  }
  
  .platform-logo {
    font-size: 1.25rem;
  }
  
  .rating-stars .star {
    font-size: 1.25rem;
  }
  
  .score {
    font-size: 1.5rem;
  }
  
  .review-count {
    font-size: 0.85rem;
  }
  
  .pulse-phone {
    font-size: 3rem;
  }
  
  .reminder-content h2 {
    font-size: 1.75rem;
  }
  
  .reminder-content p {
    font-size: 1rem;
  }
  
  .warning-text {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
}


.hero-content-thankyou h2 .text-canfuture,
h2 .text-canfuture {
  color: white !important;
  background: linear-gradient(135deg, #da6060, #a34343) !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  background-clip: unset !important;
  padding: 0.2em 0.6em;
  border-radius: 12px;
  font-weight: 900;
  display: inline-block;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 
    0 4px 15px rgba(220, 38, 38, 0.4),
    0 2px 8px rgba(220, 38, 38, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 0.3em;
  white-space: nowrap;
}

.text-canfuture::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff0000, #ff0000);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-content-thankyou h2 .text-canfuture:hover,
h2 .text-canfuture:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(220, 38, 38, 0.5),
    0 4px 15px rgba(220, 38, 38, 0.3);
}

.text-canfuture:hover::before {
  opacity: 1;
}