-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
242 lines (212 loc) · 8.81 KB
/
Copy pathcontact.html
File metadata and controls
242 lines (212 loc) · 8.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>FutureStack Intelligence — Contact</title>
<link rel="stylesheet" href="shared.css">
<style>
.page-hero {
position:relative;z-index:1;
background:linear-gradient(135deg,#030510 0%,#060818 100%);
padding:64px 40px 48px;
border-bottom:1px solid var(--glass-border);
text-align:center;
}
.contact-grid {
display:grid;
grid-template-columns:1fr 1.3fr;
gap:48px;
align-items:start;
}
.contact-info-box { }
.info-title {
font-family:var(--font-head);font-size:12px;color:white;
letter-spacing:1px;margin-bottom:28px;
}
.contact-item {
display:flex;align-items:flex-start;gap:14px;
padding:16px 0;
border-bottom:1px solid var(--glass-border);
}
.contact-item:last-child { border-bottom:none; }
.c-icon {
width:38px;height:38px;flex-shrink:0;
background:var(--glass);border:1px solid var(--glass-border);
border-radius:4px;display:flex;align-items:center;justify-content:center;
font-size:16px;
}
.c-label {
font-family:var(--font-head);font-size:8px;letter-spacing:2px;
text-transform:uppercase;color:var(--muted);margin-bottom:4px;
}
.c-value { font-size:14px;color:var(--text); }
.c-value a { color:var(--cyan);text-decoration:none;transition:opacity 0.2s; }
.c-value a:hover { opacity:0.8; }
.form-box {
background:var(--glass);
border:1px solid var(--glass-border);
border-radius:8px;
padding:32px;
position:relative;
overflow:hidden;
}
.form-box::before {
content:'';position:absolute;top:0;left:0;right:0;height:2px;
background:linear-gradient(90deg,var(--cyan),var(--purple));
}
.form-title {
font-family:var(--font-head);font-size:13px;color:white;
letter-spacing:1px;margin-bottom:24px;
}
.success-msg {
display:none;text-align:center;padding:20px;
}
.success-msg .s-icon { font-size:48px;display:block;margin-bottom:12px; }
.success-msg h3 { font-family:var(--font-head);font-size:15px;color:var(--cyan);margin-bottom:8px; }
.success-msg p { font-size:13px;color:var(--muted); }
@media(max-width:768px) {
.page-hero { padding:48px 20px 36px; }
.contact-grid { grid-template-columns:1fr;gap:36px; }
.form-box { padding:22px 16px; }
}
</style>
</head>
<body>
<nav class="navbar">
<a href="index.html" class="nav-logo">
<img src="logo.png" alt="FutureStack">
<div class="nav-brand-text">FutureStack<span>Intelligence</span></div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="ebooks.html">Ebooks</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html" class="nav-cta active">Work With Us</a></li>
</ul>
<div class="hamburger" id="ham"><span></span><span></span><span></span></div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="ebooks.html">Ebooks</a>
<a href="courses.html">Courses</a>
<a href="contact.html" class="m-cta active">Work With Us</a>
</div>
<div class="page-wrap">
<div class="page-hero">
<div class="section-tag" style="justify-content:center;">Work With Us</div>
<h1 class="section-title">Get In <span>Touch</span></h1>
<p style="color:var(--muted);font-size:15px;max-width:480px;margin:0 auto;line-height:1.8;font-weight:300;">Ready to automate your business, secure your systems or collaborate? We respond within 24 hours.</p>
</div>
<div class="container">
<div class="contact-grid">
<div class="contact-info-box">
<div class="info-title">Contact Information</div>
<div class="contact-item">
<div class="c-icon">✉️</div>
<div><div class="c-label">Email</div><div class="c-value"><a href="mailto:futurestackintelligence@outlook.com">futurestackintelligence@outlook.com</a></div></div>
</div>
<div class="contact-item">
<div class="c-icon">𝕏</div>
<div><div class="c-label">X (Twitter)</div><div class="c-value"><a href="https://x.com/FUTURESTACK001" target="_blank">@FUTURESTACK001</a></div></div>
</div>
<div class="contact-item">
<div class="c-icon">in</div>
<div><div class="c-label">LinkedIn</div><div class="c-value"><a href="https://www.linkedin.com/in/futurestackintelligence" target="_blank">FutureStack Intelligence</a></div></div>
</div>
<div class="contact-item">
<div class="c-icon">💬</div>
<div><div class="c-label">Discord</div><div class="c-value" style="color:var(--muted);">Coming Soon</div></div>
</div>
<div class="contact-item">
<div class="c-icon">⚡</div>
<div><div class="c-label">Response Time</div><div class="c-value">Within 24 hours</div></div>
</div>
<div class="contact-item">
<div class="c-icon">🌍</div>
<div><div class="c-label">Payments Accepted</div><div class="c-value">USD · GBP · EUR · Crypto · Naira</div></div>
</div>
</div>
<div class="form-box">
<div class="form-title">Send A Message</div>
<div class="success-msg" id="formSuccess">
<span class="s-icon">✅</span>
<h3>Message Sent!</h3>
<p>We'll get back to you within 24 hours.</p>
</div>
<form id="contactForm" action="https://formspree.io/f/xbdqnerv" method="POST" onsubmit="sendContact(event)">
<div class="form-group"><label class="form-label">Your Name</label><input class="form-input" type="text" name="name" placeholder="John Smith" required /></div>
<div class="form-group"><label class="form-label">Email Address</label><input class="form-input" type="email" name="email" placeholder="john@example.com" required /></div>
<div class="form-group">
<label class="form-label">Service Interest</label>
<select class="form-input" name="service">
<option value="">Select a service...</option>
<option>AI Workflow Automation</option>
<option>Shopify Store Automation</option>
<option>Cybersecurity Services</option>
<option>AI Chatbot & Support Systems</option>
<option>Cloud Computing & Cloud Security</option>
<option>Data & Reporting Automation</option>
<option>Ebook Purchase Enquiry</option>
<option>Course & Certification Waitlist</option>
<option>Other</option>
</select>
</div>
<div class="form-group"><label class="form-label">Message</label><textarea class="form-input" name="message" placeholder="Tell us about your project, timeline, or what you need..." required></textarea></div>
<button type="submit" class="btn-submit" id="contactBtn">Send Message →</button>
</form>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-inner">
<div class="footer-brand"><img src="logo.png" alt="FutureStack"><div class="footer-brand-name">FutureStack Intelligence<span>© 2026 All Rights Reserved</span></div></div>
<div class="footer-links">
<a href="index.html">Home</a><a href="services.html">Services</a><a href="ebooks.html">Ebooks</a>
<a href="courses.html">Courses</a><a href="contact.html">Contact</a>
<a href="https://x.com/FUTURESTACK001" target="_blank">X / Twitter</a>
<a href="https://www.linkedin.com/in/futurestackintelligence" target="_blank">LinkedIn</a>
</div>
<div class="footer-copy">Built with precision. Delivered globally.</div>
</div>
</footer>
<div class="bottom-nav">
<div class="bottom-nav-inner">
<a href="index.html" class="bnav-item"><span class="bnav-icon">🏠</span><span class="bnav-label">Home</span></a>
<a href="services.html" class="bnav-item"><span class="bnav-icon">⚡</span><span class="bnav-label">Services</span></a>
<a href="ebooks.html" class="bnav-item"><span class="bnav-icon">📚</span><span class="bnav-label">Ebooks</span></a>
<a href="contact.html" class="bnav-item active"><span class="bnav-icon">✉️</span><span class="bnav-label">Contact</span></a>
</div>
</div>
<script src="shared.js"></script>
<script>
async function sendContact(e) {
e.preventDefault();
const form = e.target;
const btn = document.getElementById('contactBtn');
btn.textContent = 'Sending...';
btn.disabled = true;
try {
const r = await fetch(form.action, {
method:'POST',
body:new FormData(form),
headers:{'Accept':'application/json'}
});
if (r.ok) {
form.style.display = 'none';
document.getElementById('formSuccess').style.display = 'block';
} else {
btn.textContent = 'Failed — Try Again';
btn.disabled = false;
}
} catch {
btn.textContent = 'Failed — Try Again';
btn.disabled = false;
}
}
</script>
</body>
</html>