Files
ukaiautomation/thank-you.php

202 lines
6.2 KiB
PHP
Raw Normal View History

<?php
$page_title = "Thank You | UK Data Services";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $page_title; ?></title>
<meta name="robots" content="noindex, nofollow">
<link rel="stylesheet" href="assets/css/main.css">
<style>
.thank-you-container {
max-width: 700px;
margin: 60px auto;
padding: 20px;
text-align: center;
}
.success-icon {
font-size: 4em;
margin-bottom: 20px;
}
.thank-you-container h1 {
color: #1a1a2e;
margin-bottom: 15px;
}
.thank-you-container .subtitle {
color: #666;
font-size: 1.1em;
margin-bottom: 40px;
}
.next-steps {
background: #f8f9fa;
border-radius: 12px;
padding: 30px;
text-align: left;
margin-bottom: 40px;
}
.next-steps h3 {
margin: 0 0 20px 0;
color: #1a1a2e;
}
.step {
display: flex;
gap: 15px;
margin-bottom: 20px;
align-items: flex-start;
}
.step:last-child { margin-bottom: 0; }
.step-icon {
background: #00cc66;
color: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
}
.step-content strong {
color: #1a1a2e;
}
.upsell-section {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
border-radius: 12px;
padding: 30px;
color: #fff;
margin-bottom: 30px;
}
.upsell-section h3 {
margin: 0 0 15px 0;
}
.upsell-section p {
opacity: 0.9;
margin-bottom: 20px;
}
.upsell-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn-white {
background: #fff;
color: #1a1a2e;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
}
.btn-outline {
border: 2px solid rgba(255,255,255,0.5);
color: #fff;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
}
.resources {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 20px;
}
.resource-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
text-align: center;
}
.resource-card .icon {
font-size: 2em;
margin-bottom: 10px;
}
.resource-card h4 {
margin: 0 0 10px 0;
color: #1a1a2e;
}
.resource-card a {
color: #0066cc;
text-decoration: none;
font-weight: 600;
}
</style>
</head>
<body>
<div class="thank-you-container">
<div class="success-icon">🎉</div>
<h1>Thank You for Your Enquiry!</h1>
<p class="subtitle">We've received your request and will be in touch shortly.</p>
<div class="next-steps">
<h3>📋 What Happens Next</h3>
<div class="step">
<div class="step-icon">1</div>
<div class="step-content">
<strong>Within 2 hours</strong><br>
We'll review your requirements and send a confirmation email
</div>
</div>
<div class="step">
<div class="step-icon">2</div>
<div class="step-content">
<strong>Within 24 hours</strong><br>
You'll receive a detailed proposal with fixed pricing no surprises
</div>
</div>
<div class="step">
<div class="step-icon">3</div>
<div class="step-content">
<strong>Optional call</strong><br>
We can schedule a 30-min consultation to discuss your project
</div>
</div>
</div>
<div class="upsell-section">
<h3> Want to Speed Things Up?</h3>
<p>Book a call now and we can discuss your project today</p>
<div class="upsell-buttons">
<a href="https://calendly.com/ukdataservices/consultation" class="btn-white" target="_blank">Book a Call</a>
<a href="/tools/cost-calculator" class="btn-outline">Try Cost Calculator</a>
</div>
</div>
<h3 style="color:#1a1a2e;margin-bottom:10px;">📚 While You Wait</h3>
<p style="color:#666;margin-bottom:20px;">Check out these resources:</p>
<div class="resources">
<div class="resource-card">
<div class="icon">📊</div>
<h4>Cost Calculator</h4>
<a href="/tools/cost-calculator">Estimate your project </a>
</div>
<div class="resource-card">
<div class="icon">📖</div>
<h4>Case Studies</h4>
<a href="/case-studies">See our work </a>
</div>
<div class="resource-card">
<div class="icon">⚖️</div>
<h4>Compliance Guide</h4>
<a href="/blog/articles/web-scraping-compliance-uk-guide">Read the guide </a>
</div>
</div>
</div>
<!-- Conversion tracking -->
<script>
if (typeof gtag !== 'undefined') {
gtag('event', 'conversion', {
'event_category': 'Quote',
'event_label': 'form_submission'
});
}
</script>
</body>
</html>