sullivancs commited on
Commit
e54cd37
·
verified ·
1 Parent(s): 1d78b10

Create a United States Debt Settlement website for lead generation. Phone number to call is changed globally by editing one line.

Browse files
Files changed (8) hide show
  1. about.html +35 -0
  2. components/footer.js +74 -0
  3. components/lead-form.js +122 -0
  4. components/navbar.js +70 -0
  5. index.html +88 -47
  6. script.js +26 -3
  7. services.html +79 -0
  8. style.css +42 -4
about.html ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ```html
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>About US Debt Relief - Our Mission</title>
8
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
9
+ <link rel="stylesheet" href="style.css">
10
+ <script src="https://cdn.tailwindcss.com"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="min-h-screen bg-gradient-to-br from-blue-900 via-blue-800 to-indigo-900">
15
+ <custom-navbar></custom-navbar>
16
+
17
+ <section class="py-16 bg-white">
18
+ <div class="container mx-auto px-4">
19
+ <div class="max-w-4xl mx-auto">
20
+ <h1 class="text-4xl font-bold text-center text-gray-800 mb-8">About US Debt Relief</h1>
21
+
22
+ <div class="bg-white p-8 rounded-lg shadow-lg mb-8">
23
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Our Mission</h2>
24
+ <p class="text-gray-600 mb-6">At US Debt Relief, our mission is to help Americans achieve financial freedom through ethical and effective debt settlement strategies. We believe that everyone deserves a second chance at financial stability.</p>
25
+
26
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
27
+ <div>
28
+ <h3 class="text-xl font-bold text-gray-800 mb-4">Why Choose Us</h3>
29
+ <ul class="list-disc list-inside text-gray-600">
30
+ <li>Over $2.3 billion in debt settled</li>
31
+ <li>50,000+ clients helped nationwide</li>
32
+ <li>A+ BBB Rating</li>
33
+ <li>15+ years of industry experience</li>
34
+ </ul>
35
+ </div>
components/footer.js ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ footer {
7
+ background: #1e293b;
8
+ color: white;
9
+ padding: 3rem 2rem;
10
+ margin-top: 4rem;
11
+ }
12
+ .footer-container {
13
+ max-width: 1200px;
14
+ margin: 0 auto;
15
+ display: grid;
16
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
17
+ gap: 2rem;
18
+ }
19
+ .footer-section h3 {
20
+ color: #93c5fd;
21
+ margin-bottom: 1rem;
22
+ font-size: 1.125rem;
23
+ }
24
+ .footer-section p, .footer-section a {
25
+ color: #cbd5e1;
26
+ line-height: 1.6;
27
+ }
28
+ .footer-section a {
29
+ text-decoration: none;
30
+ }
31
+ .footer-section a:hover {
32
+ color: white;
33
+ }
34
+ .copyright {
35
+ text-align: center;
36
+ margin-top: 2rem;
37
+ padding-top: 2rem;
38
+ border-top: 1px solid #374151;
39
+ color: #9ca3af;
40
+ }
41
+ .phone-number {
42
+ font-size: 1.25rem;
43
+ font-weight: bold;
44
+ color: #dc2626;
45
+ }
46
+ </style>
47
+ <footer>
48
+ <div class="footer-container">
49
+ <div class="footer-section">
50
+ <h3>US Debt Relief</h3>
51
+ <p>Helping Americans achieve financial freedom through proven debt settlement strategies.</p>
52
+ <p class="phone-number">${window.DEBT_PHONE || '1-800-DEBT-HELP'}</p>
53
+ </div>
54
+ <div class="footer-section">
55
+ <h3>Quick Links</h3>
56
+ <p><a href="/">Home</a></p>
57
+ <p><a href="/services.html">Services</a></p>
58
+ <p><a href="/about.html">About Us</a></p>
59
+ <p><a href="/contact.html">Contact</a></p>
60
+ </div>
61
+ <div class="footer-section">
62
+ <h3>Legal</h3>
63
+ <p><a href="/privacy.html">Privacy Policy</a></p>
64
+ <p><a href="/terms.html">Terms of Service</a></p>
65
+ </div>
66
+ </div>
67
+ <div class="copyright">
68
+ <p>&copy; 2024 US Debt Relief. All rights reserved.</p>
69
+ </div>
70
+ </footer>
71
+ `;
72
+ }
73
+ }
74
+ customElements.define('custom-footer', CustomFooter);
components/lead-form.js ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomLeadForm extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ .lead-form {
7
+ background: white;
8
+ padding: 2rem;
9
+ border-radius: 0.5rem;
10
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
11
+ max-width: 500px;
12
+ margin: 0 auto;
13
+ }
14
+ .form-title {
15
+ color: #1e40af;
16
+ font-size: 1.5rem;
17
+ font-weight: bold;
18
+ margin-bottom: 1.5rem;
19
+ text-align: center;
20
+ }
21
+ .form-group {
22
+ margin-bottom: 1rem;
23
+ }
24
+ label {
25
+ display: block;
26
+ margin-bottom: 0.5rem;
27
+ font-weight: 500;
28
+ color: #374151;
29
+ }
30
+ input, select {
31
+ width: 100%;
32
+ padding: 0.75rem;
33
+ border: 1px solid #d1d5db;
34
+ border-radius: 0.375rem;
35
+ font-size: 1rem;
36
+ }
37
+ input:focus, select:focus {
38
+ outline: none;
39
+ border-color: #3b82f6;
40
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
41
+ }
42
+ .submit-btn {
43
+ width: 100%;
44
+ background: #dc2626;
45
+ color: white;
46
+ padding: 0.75rem;
47
+ border: none;
48
+ border-radius: 0.375rem;
49
+ font-size: 1.125rem;
50
+ font-weight: 600;
51
+ cursor: pointer;
52
+ transition: background-color 0.3s;
53
+ }
54
+ .submit-btn:hover {
55
+ background: #b91c1c;
56
+ }
57
+ .disclaimer {
58
+ font-size: 0.75rem;
59
+ color: #6b7280;
60
+ margin-top: 1rem;
61
+ text-align: center;
62
+ }
63
+ </style>
64
+ <div class="lead-form">
65
+ <h3 class="form-title">Get Debt Relief Today</h3>
66
+ <form id="debt-lead-form">
67
+ <div class="form-group">
68
+ <label for="name">Full Name</label>
69
+ <input type="text" id="name" name="name" required>
70
+ </div>
71
+ <div class="form-group">
72
+ <label for="phone">Phone Number</label>
73
+ <input type="tel" id="phone" name="phone" required>
74
+ </div>
75
+ <div class="form-group">
76
+ <label for="email">Email Address</label>
77
+ <input type="email" id="email" name="email" required>
78
+ </div>
79
+ <div class="form-group">
80
+ <label for="debt-amount">Total Debt Amount</label>
81
+ <select id="debt-amount" name="debt_amount" required>
82
+ <option value="">Select Amount</option>
83
+ <option value="5000-10000">$5,000 - $10,000</option>
84
+ <option value="10000-25000">$10,000 - $25,000</option>
85
+ <option value="25000-50000">$25,000 - $50,000</option>
86
+ <option value="50000-100000">$50,000 - $100,000</option>
87
+ <option value="100000+">$100,000+</option>
88
+ </select>
89
+ </div>
90
+ <div class="form-group">
91
+ <label for="debt-type">Type of Debt</label>
92
+ <select id="debt-type" name="debt_type" required>
93
+ <option value="">Select Type</option>
94
+ <option value="credit-cards">Credit Cards</option>
95
+ <option value="medical">Medical Bills</option>
96
+ <option value="personal-loans">Personal Loans</option>
97
+ <option value="multiple">Multiple Types</option>
98
+ </select>
99
+ </div>
100
+ <button type="submit" class="submit-btn">Get Free Consultation</button>
101
+ <p class="disclaimer">By submitting, you agree to be contacted by our debt specialists</p>
102
+ </form>
103
+ </div>
104
+ `;
105
+
106
+ this.shadowRoot.getElementById('debt-lead-form').addEventListener('submit', this.handleSubmit);
107
+ }
108
+
109
+ handleSubmit = (e) => {
110
+ e.preventDefault();
111
+ const formData = new FormData(e.target);
112
+ const data = Object.fromEntries(formData);
113
+
114
+ // Here you would typically send the data to your backend
115
+ console.log('Lead form submitted:', data);
116
+ alert('Thank you! A debt specialist will contact you shortly at the number provided.');
117
+
118
+ // Reset form
119
+ e.target.reset();
120
+ }
121
+ }
122
+ customElements.define('custom-lead-form', CustomLeadForm);
components/navbar.js ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ nav {
7
+ background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
8
+ padding: 1rem 2rem;
9
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
10
+ }
11
+ .nav-container {
12
+ max-width: 1200px;
13
+ margin: 0 auto;
14
+ display: flex;
15
+ justify-content: space-between;
16
+ align-items: center;
17
+ }
18
+ .logo {
19
+ font-size: 1.5rem;
20
+ font-weight: bold;
21
+ color: white;
22
+ text-decoration: none;
23
+ }
24
+ .nav-links {
25
+ display: flex;
26
+ gap: 2rem;
27
+ align-items: center;
28
+ }
29
+ .nav-links a {
30
+ color: white;
31
+ text-decoration: none;
32
+ font-weight: 500;
33
+ transition: color 0.3s;
34
+ }
35
+ .nav-links a:hover {
36
+ color: #93c5fd;
37
+ }
38
+ .cta-button {
39
+ background: #dc2626;
40
+ color: white;
41
+ padding: 0.5rem 1.5rem;
42
+ border-radius: 0.375rem;
43
+ font-weight: 600;
44
+ transition: background-color 0.3s;
45
+ }
46
+ .cta-button:hover {
47
+ background: #b91c1c;
48
+ }
49
+ @media (max-width: 768px) {
50
+ .nav-links {
51
+ display: none;
52
+ }
53
+ }
54
+ </style>
55
+ <nav>
56
+ <div class="nav-container">
57
+ <a href="/" class="logo">US Debt Relief</a>
58
+ <div class="nav-links">
59
+ <a href="/">Home</a>
60
+ <a href="/services.html">Services</a>
61
+ <a href="/about.html">About</a>
62
+ <a href="/contact.html">Contact</a>
63
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="cta-button">Call Now</a>
64
+ </div>
65
+ </div>
66
+ </nav>
67
+ `;
68
+ }
69
+ }
70
+ customElements.define('custom-navbar', CustomNavbar);
index.html CHANGED
@@ -1,66 +1,107 @@
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Digital Sandbox</title>
7
  <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
  <link rel="stylesheet" href="style.css">
9
  <script src="https://cdn.tailwindcss.com"></script>
10
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
  <script src="https://unpkg.com/feather-icons"></script>
12
  </head>
13
- <body class="min-h-screen bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900">
14
- <div class="container mx-auto px-4 py-8">
15
- <header class="text-center mb-12">
16
- <h1 class="text-6xl font-bold text-white mb-4 animate-pulse">Digital Sandbox</h1>
17
- <p class="text-xl text-purple-200">Your creative playground awaits</p>
18
- </header>
19
-
20
- <main class="max-w-4xl mx-auto">
21
- <section class="bg-white/10 backdrop-blur-md rounded-2xl p-8 shadow-2xl mb-8">
22
- <h2 class="text-3xl font-semibold text-white mb-6 flex items-center">
23
- <i data-feather="code" class="mr-3"></i>
24
- Welcome to the Sandbox
25
- </h2>
26
- <div class="space-y-4">
27
- <div class="bg-white/5 rounded-lg p-4 hover:bg-white/10 transition-colors">
28
- <h3 class="text-xl font-medium text-purple-300 mb-2">Start Building</h3>
29
- <p class="text-gray-300">This is your blank canvas. Add components, styles, and functionality to bring your ideas to life.</p>
30
- </div>
31
- <div class="bg-white/5 rounded-lg p-4 hover:bg-white/10 transition-colors">
32
- <h3 class="text-xl font-medium text-purple-300 mb-2">Customize Everything</h3>
33
- <p class="text-gray-300">Modify colors, layouts, and interactions to match your vision perfectly.</p>
34
- </div>
35
- <div class="bg-white/5 rounded-lg p-4 hover:bg-white/10 transition-colors">
36
- <h3 class="text-xl font-medium text-purple-300 mb-2">Innovate Freely</h3>
37
- <p class="text-gray-300">Experiment with new ideas and push the boundaries of web design.</p>
38
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  </div>
40
- </section>
41
-
42
- <section class="grid grid-cols-1 md:grid-cols-3 gap-6">
43
- <div class="bg-gradient-to-br from-purple-600 to-pink-600 rounded-xl p-6 transform hover:scale-105 transition-transform">
44
- <i data-feather="box" class="text-white mb-4"></i>
45
- <h3 class="text-xl font-bold text-white mb-2">Components</h3>
46
- <p class="text-purple-100">Modular building blocks</p>
47
  </div>
48
- <div class="bg-gradient-to-br from-blue-600 to-cyan-600 rounded-xl p-6 transform hover:scale-105 transition-transform">
49
- <i data-feather="layers" class="text-white mb-4"></i>
50
- <h3 class="text-xl font-bold text-white mb-2">Styles</h3>
51
- <p class="text-blue-100">Beautiful design systems</p>
52
  </div>
53
- <div class="bg-gradient-to-br from-green-600 to-emerald-600 rounded-xl p-6 transform hover:scale-105 transition-transform">
54
- <i data-feather="zap" class="text-white mb-4"></i>
55
- <h3 class="text-xl font-bold text-white mb-2">Interactions</h3>
56
- <p class="text-green-100">Engaging user experiences</p>
57
  </div>
58
- </section>
59
- </main>
60
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
61
 
 
 
 
62
  <script src="script.js"></script>
63
  <script>feather.replace();</script>
64
- <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
65
  </body>
66
- </html>
 
1
+
2
  <!DOCTYPE html>
3
  <html lang="en">
4
  <head>
5
  <meta charset="UTF-8">
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>US Debt Relief - Get Out of Debt Today</title>
8
  <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
9
  <link rel="stylesheet" href="style.css">
10
  <script src="https://cdn.tailwindcss.com"></script>
11
  <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
  <script src="https://unpkg.com/feather-icons"></script>
13
  </head>
14
+ <body class="min-h-screen bg-gradient-to-br from-blue-900 via-blue-800 to-indigo-900">
15
+ <custom-navbar></custom-navbar>
16
+
17
+ <!-- Hero Section -->
18
+ <section class="relative py-20 bg-gradient-to-r from-blue-800 to-indigo-900">
19
+ <div class="container mx-auto px-4">
20
+ <div class="max-w-4xl mx-auto text-center">
21
+ <h1 class="text-5xl md:text-6xl font-bold text-white mb-6">
22
+ Get Out of Debt
23
+ <span class="text-red-500">Today</span>
24
+ </h1>
25
+ <p class="text-xl text-blue-200 mb-8 max-w-2xl mx-auto">
26
+ Join thousands of Americans who have reduced their debt by up to 50% with our proven debt settlement programs.
27
+ </p>
28
+ <div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
29
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="bg-red-600 hover:bg-red-700 text-white font-bold py-4 px-8 rounded-lg text-lg transition-colors">
30
+ <i data-feather="phone" class="inline mr-2"></i>
31
+ Call Now: ${window.DEBT_PHONE || '1-800-DEBT-HELP'}
32
+ </a>
33
+ <a href="#lead-form" class="bg-white hover:bg-gray-100 text-blue-800 font-bold py-4 px-8 rounded-lg text-lg transition-colors">
34
+ Free Consultation
35
+ </a>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </section>
40
+
41
+ <!-- Benefits Section -->
42
+ <section class="py-16 bg-white">
43
+ <div class="container mx-auto px-4">
44
+ <h2 class="text-4xl font-bold text-center text-gray-800 mb-12">Why Choose US Debt Relief?</h2>
45
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-6xl mx-auto">
46
+ <div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-red-500">
47
+ <i data-feather="dollar-sign" class="text-red-500 mb-4"></i>
48
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Reduce Debt by 50%</h3>
49
+ <p class="text-gray-600">Our clients typically reduce their total debt by 40-60% through our settlement programs.</p>
50
+ </div>
51
+ <div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-blue-500">
52
+ <i data-feather="shield" class="text-blue-500 mb-4"></i>
53
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Legal Protection</h3>
54
+ <p class="text-gray-600">We provide legal support and negotiation expertise to protect your rights.</p>
55
+ </div>
56
+ <div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-green-500">
57
+ <i data-feather="clock" class="text-green-500 mb-4"></i>
58
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Fast Results</h3>
59
+ <p class="text-gray-600">Most clients complete our program in 24-48 months and achieve financial freedom.</p>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </section>
64
+
65
+ <!-- Statistics Section -->
66
+ <section class="py-16 bg-gray-100">
67
+ <div class="container mx-auto px-4">
68
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8 max-w-4xl mx-auto text-center">
69
+ <div>
70
+ <div class="text-4xl font-bold text-blue-600 mb-2">$2.3B+</div>
71
+ <p class="text-gray-600">Debt Settled</p>
72
  </div>
73
+ <div>
74
+ <div class="text-4xl font-bold text-green-600 mb-2">50,000+</div>
75
+ <p class="text-gray-600">Clients Helped</p>
 
 
 
 
76
  </div>
77
+ <div>
78
+ <div class="text-4xl font-bold text-red-600 mb-2">40-60%</div>
79
+ <p class="text-gray-600">Average Debt Reduction</p>
 
80
  </div>
81
+ <div>
82
+ <div class="text-4xl font-bold text-purple-600 mb-2">24-48</div>
83
+ <p class="text-gray-600">Months to Freedom</p>
 
84
  </div>
85
+ </div>
86
+ </div>
87
+ </section>
88
+
89
+ <!-- Lead Form Section -->
90
+ <section id="lead-form" class="py-16 bg-gradient-to-r from-blue-600 to-indigo-700">
91
+ <div class="container mx-auto px-4">
92
+ <div class="max-w-4xl mx-auto">
93
+ <h2 class="text-4xl font-bold text-white text-center mb-8">Get Your Free Debt Relief Consultation</h2>
94
+ <custom-lead-form></custom-lead-form>
95
+ </div>
96
+ </div>
97
+ </section>
98
+
99
+ <custom-footer></custom-footer>
100
 
101
+ <script src="components/navbar.js"></script>
102
+ <script src="components/footer.js"></script>
103
+ <script src="components/lead-form.js"></script>
104
  <script src="script.js"></script>
105
  <script>feather.replace();</script>
 
106
  </body>
107
+ </html>
script.js CHANGED
@@ -1,6 +1,10 @@
 
 
 
 
1
  // Initialize the application
2
  document.addEventListener('DOMContentLoaded', () => {
3
- console.log('Digital Sandbox initialized');
4
 
5
  // Add smooth scroll behavior
6
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
@@ -17,7 +21,7 @@ document.addEventListener('DOMContentLoaded', () => {
17
  });
18
 
19
  // Add interactive hover effects
20
- const cards = document.querySelectorAll('.glass, .bg-gradient-to-br');
21
  cards.forEach(card => {
22
  card.addEventListener('mouseenter', function() {
23
  this.style.transform = 'translateY(-2px)';
@@ -29,6 +33,13 @@ document.addEventListener('DOMContentLoaded', () => {
29
 
30
  // Initialize tooltips or other interactive elements
31
  initializeTooltips();
 
 
 
 
 
 
 
32
  });
33
 
34
  function initializeTooltips() {
@@ -52,4 +63,16 @@ function debounce(func, wait) {
52
  // Handle responsive navigation (if needed)
53
  window.addEventListener('resize', debounce(() => {
54
  console.log('Window resized');
55
- }, 250));
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ // Global phone number configuration - change this one line to update phone number everywhere
3
+ window.DEBT_PHONE = '1-800-332-8435';
4
+
5
  // Initialize the application
6
  document.addEventListener('DOMContentLoaded', () => {
7
+ console.log('US Debt Relief initialized');
8
 
9
  // Add smooth scroll behavior
10
  document.querySelectorAll('a[href^="#"]').forEach(anchor => {
 
21
  });
22
 
23
  // Add interactive hover effects
24
+ const cards = document.querySelectorAll('.bg-white, .bg-gradient-to-br');
25
  cards.forEach(card => {
26
  card.addEventListener('mouseenter', function() {
27
  this.style.transform = 'translateY(-2px)';
 
33
 
34
  // Initialize tooltips or other interactive elements
35
  initializeTooltips();
36
+
37
+ // Track phone clicks for analytics
38
+ document.querySelectorAll('a[href^="tel:"]').forEach(link => {
39
+ link.addEventListener('click', function() {
40
+ console.log('Phone number clicked:', this.getAttribute('href'));
41
+ // Add your analytics tracking here
42
+ });
43
  });
44
 
45
  function initializeTooltips() {
 
63
  // Handle responsive navigation (if needed)
64
  window.addEventListener('resize', debounce(() => {
65
  console.log('Window resized');
66
+ }, 250));
67
+
68
+ // Lead form handling
69
+ function handleLeadFormSubmit(formData) {
70
+ // Send form data to your backend or CRM
71
+ console.log('Lead form submitted:', formData);
72
+
73
+ // You can integrate with services like:
74
+ // - HubSpot
75
+ // - Salesforce
76
+ // - Mailchimp
77
+ // - Your custom API
78
+ }
services.html ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Debt Settlement Services - US Debt Relief</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <link rel="stylesheet" href="style.css">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ </head>
13
+ <body class="min-h-screen bg-gradient-to-br from-blue-900 via-blue-800 to-indigo-900">
14
+ <custom-navbar></custom-navbar>
15
+
16
+ <section class="py-16 bg-white">
17
+ <div class="container mx-auto px-4">
18
+ <h1 class="text-4xl font-bold text-center text-gray-800 mb-12">Our Debt Relief Services</h1>
19
+
20
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-6xl mx-auto">
21
+ <div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-blue-500">
22
+ <i data-feather="dollar-sign" class="text-blue-500 mb-4"></i>
23
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Debt Settlement</h2>
24
+ <p class="text-gray-600 mb-4">Our expert negotiators work directly with your creditors to settle your debts for less than you owe.</p>
25
+ <ul class="list-disc list-inside text-gray-600 mb-4">
26
+ <li>Reduce debt by 40-60%</li>
27
+ <li>Stop collection calls</li>
28
+ <li>Legal protection</li>
29
+ </ul>
30
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
31
+ </div>
32
+
33
+ <div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-green-500">
34
+ <i data-feather="shield" class="text-green-500 mb-4"></i>
35
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Credit Counseling</h2>
36
+ <p class="text-gray-600 mb-4">Professional guidance to help you manage your finances and improve your credit score.</p>
37
+ <ul class="list-disc list-inside text-gray-600 mb-4">
38
+ <li>Budget management</li>
39
+ <li>Credit education</li>
40
+ <li>Long-term financial planning</li>
41
+ </ul>
42
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
43
+ </div>
44
+
45
+ <div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-red-500">
46
+ <i data-feather="file-text" class="text-red-500 mb-4"></i>
47
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Debt Consolidation</h2>
48
+ <p class="text-gray-600 mb-4">Combine multiple debts into one manageable payment with potentially lower interest rates.</p>
49
+ <ul class="list-disc list-inside text-gray-600 mb-4">
50
+ <li>Single monthly payment</li>
51
+ <li>Lower interest rates</li>
52
+ <li>Simplified debt management</li>
53
+ </ul>
54
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
55
+ </div>
56
+
57
+ <div class="bg-white p-8 rounded-lg shadow-lg border-t-4 border-purple-500">
58
+ <i data-feather="users" class="text-purple-500 mb-4"></i>
59
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Bankruptcy Alternatives</h2>
60
+ <p class="text-gray-600 mb-4">Explore options to avoid bankruptcy while still achieving significant debt relief.</p>
61
+ <ul class="list-disc list-inside text-gray-600 mb-4">
62
+ <li>Avoid bankruptcy filing</li>
63
+ <li>Protect your assets</li>
64
+ <li>Maintain credit standing</li>
65
+ </ul>
66
+ <a href="tel:${window.DEBT_PHONE || '1-800-DEBT-HELP'}" class="phone-highlight inline-block">Call Now</a>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </section>
71
+
72
+ <custom-footer></custom-footer>
73
+
74
+ <script src="components/navbar.js"></script>
75
+ <script src="components/footer.js"></script>
76
+ <script src="script.js"></script>
77
+ <script>feather.replace();</script>
78
+ </body>
79
+ </html>
style.css CHANGED
@@ -1,3 +1,4 @@
 
1
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
2
 
3
  * {
@@ -17,8 +18,8 @@ body {
17
  }
18
 
19
  @keyframes glow {
20
- 0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.5); }
21
- 50% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.8); }
22
  }
23
 
24
  .animate-float {
@@ -38,7 +39,7 @@ body {
38
 
39
  /* Gradient text */
40
  .gradient-text {
41
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
42
  -webkit-background-clip: text;
43
  -webkit-text-fill-color: transparent;
44
  background-clip: text;
@@ -47,4 +48,41 @@ body {
47
  /* Smooth transitions */
48
  * {
49
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
50
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
3
 
4
  * {
 
18
  }
19
 
20
  @keyframes glow {
21
+ 0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
22
+ 50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
23
  }
24
 
25
  .animate-float {
 
39
 
40
  /* Gradient text */
41
  .gradient-text {
42
+ background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
43
  -webkit-background-clip: text;
44
  -webkit-text-fill-color: transparent;
45
  background-clip: text;
 
48
  /* Smooth transitions */
49
  * {
50
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
51
+ }
52
+
53
+ /* Debt Relief Specific Styles */
54
+ .cta-pulse {
55
+ animation: pulse 2s infinite;
56
+ }
57
+
58
+ @keyframes pulse {
59
+ 0% { transform: scale(1); }
60
+ 50% { transform: scale(1.05); }
61
+ 100% { transform: scale(1); }
62
+ }
63
+
64
+ .trust-badge {
65
+ background: linear-gradient(135deg, #10b981 0%, #059669 100%);
66
+ }
67
+
68
+ .phone-highlight {
69
+ background: #dc2626;
70
+ color: white;
71
+ padding: 0.5rem 1rem;
72
+ border-radius: 0.375rem;
73
+ font-weight: bold;
74
+ text-decoration: none;
75
+ }
76
+
77
+ .phone-highlight:hover {
78
+ background: #b91c1c;
79
+ }
80
+
81
+ /* Form validation styles */
82
+ input:invalid {
83
+ border-color: #dc2626;
84
+ }
85
+
86
+ input:valid {
87
+ border-color: #10b981;
88
+ }