File size: 15,171 Bytes
c8cd578 | 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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Iraq Salary Transparency Portal</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
:root {
--primary: #6c5ce7;
--secondary: #a29bfe;
--bg: #e0e5ec;
--shadow-light: #ffffff;
--shadow-dark: #a3b1c6;
}
body {
background-color: var(--bg);
font-family: 'Inter', sans-serif;
}
.neumorphic {
border-radius: 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
}
.neumorphic-inset {
border-radius: 20px;
background: var(--bg);
box-shadow: inset 8px 8px 16px var(--shadow-dark),
inset -8px -8px 16px var(--shadow-light);
}
input, textarea, select {
border-radius: 15px;
background: var(--bg);
box-shadow: inset 5px 5px 10px var(--shadow-dark),
inset -5px -5px 10px var(--shadow-light);
border: none;
}
nav {
border-radius: 0 0 20px 20px;
background: var(--bg);
box-shadow: 8px 8px 16px var(--shadow-dark),
-8px -8px 16px var(--shadow-light);
}
button {
border-radius: 15px;
background: var(--bg);
box-shadow: 5px 5px 10px var(--shadow-dark),
-5px -5px 10px var(--shadow-light);
transition: all 0.2s ease;
}
button:hover {
box-shadow: 2px 2px 5px var(--shadow-dark),
-2px -2px 5px var(--shadow-light);
}
button:active {
box-shadow: inset 2px 2px 5px var(--shadow-dark),
inset -2px -2px 5px var(--shadow-light);
}
</style>
</head>
<body class="font-sans">
<!-- Navigation -->
<nav class="py-4">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<i data-feather="bar-chart-2" class="text-blue-600 mr-2"></i>
<span class="text-xl font-bold text-blue-600">Iraq Salary Portal</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="index.html" class="text-gray-700 hover:text-blue-600 font-medium">Home</a>
<a href="#" class="text-gray-700 hover:text-blue-600 font-medium">Submit Salary</a>
<a href="salary-search.html" class="text-gray-700 hover:text-blue-600 font-medium">Search Data</a>
<a href="salary-calculator.html" class="text-gray-700 hover:text-blue-600 font-medium">Calculator</a>
<a href="contact.html" class="text-blue-600 font-medium">Contact</a>
<button class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition">Login</button>
</div>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Contact Section -->
<div class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h1 class="text-4xl font-bold text-gray-800 mb-4">Contact Us</h1>
<p class="text-xl text-gray-600">Have questions or feedback? We'd love to hear from you.</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div class="neumorphic p-8 rounded-xl" data-aos="fade-right">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Send us a message</h2>
<form>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Your Name</label>
<input type="text" placeholder="Enter your name" class="w-full px-4 py-3">
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Email Address</label>
<input type="email" placeholder="Enter your email" class="w-full px-4 py-3">
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Subject</label>
<select class="w-full px-4 py-3">
<option value="">Select a subject</option>
<option>General Inquiry</option>
<option>Salary Submission Help</option>
<option>Data Accuracy Concern</option>
<option>Partnership Opportunity</option>
<option>Press Inquiry</option>
<option>Other</option>
</select>
</div>
<div class="mb-6">
<label class="block text-gray-700 mb-2">Message</label>
<textarea rows="5" placeholder="Enter your message" class="w-full px-4 py-3"></textarea>
</div>
<button class="bg-blue-600 text-white px-6 py-3 w-full hover:bg-blue-700 transition">
Send Message
</button>
</form>
</div>
<div class="neumorphic p-8 rounded-xl" data-aos="fade-left">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Contact Information</h2>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i data-feather="mail" class="text-blue-600"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Email</h3>
<p class="text-gray-600">contact@huwaya.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i data-feather="phone" class="text-green-600"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Phone</h3>
<p class="text-gray-600">+964 770 123 4567</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i data-feather="map-pin" class="text-purple-600"></i>
</div>
<div>
<h3 class="font-semibold text-gray-800">Office</h3>
<p class="text-gray-600">Erbil, Kurdistan Region</p>
<p class="text-gray-600">Iraq</p>
</div>
</div>
</div>
<div class="mt-10">
<h3 class="font-semibold text-gray-800 mb-4">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="bg-blue-100 p-3 rounded-full text-blue-600 hover:bg-blue-200 transition">
<i data-feather="facebook"></i>
</a>
<a href="#" class="bg-blue-100 p-3 rounded-full text-blue-400 hover:bg-blue-200 transition">
<i data-feather="twitter"></i>
</a>
<a href="#" class="bg-pink-100 p-3 rounded-full text-pink-600 hover:bg-pink-200 transition">
<i data-feather="instagram"></i>
</a>
<a href="#" class="bg-blue-100 p-3 rounded-full text-blue-700 hover:bg-blue-200 transition">
<i data-feather="linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ Section -->
<div class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Frequently Asked Questions</h2>
<p class="text-gray-600 max-w-3xl mx-auto">Find quick answers to common questions about our platform</p>
</div>
<div class="neumorphic p-8 rounded-xl max-w-4xl mx-auto" data-aos="fade-up">
<div class="space-y-4">
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="font-semibold text-gray-800">How do I submit my salary anonymously?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</button>
<div class="mt-2 text-gray-600 hidden">
<p>Our submission form doesn't require any personal information. We only ask for job details, salary information, and general demographics to help with analysis. All data is aggregated and anonymized before being published.</p>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="font-semibold text-gray-800">How accurate is the salary data?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</button>
<div class="mt-2 text-gray-600 hidden">
<p>We verify all submissions through multiple methods including cross-referencing with similar roles and statistical analysis. While we can't guarantee 100% accuracy for every entry, our verification process helps maintain reliable data.</p>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="font-semibold text-gray-800">Can I update my salary submission?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</button>
<div class="mt-2 text-gray-600 hidden">
<p>Yes! If you receive a raise or change positions, you can submit an updated salary. Since submissions are anonymous, we recommend including similar details to your original submission so we can match them appropriately.</p>
</div>
</div>
<div class="border-b border-gray-200 pb-4">
<button class="flex justify-between items-center w-full text-left">
<h3 class="font-semibold text-gray-800">How often is the data updated?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</button>
<div class="mt-2 text-gray-600 hidden">
<p>Our database is updated in real-time as new submissions come in. We also perform quarterly reviews to remove outdated information and adjust for inflation where appropriate.</p>
</div>
</div>
<div>
<button class="flex justify-between items-center w-full text-left">
<h3 class="font-semibold text-gray-800">Do you share my data with third parties?</h3>
<i data-feather="chevron-down" class="text-gray-500"></i>
</button>
<div class="mt-2 text-gray-600 hidden">
<p>No, we never share individual data with third parties. Aggregated statistics may be used in reports or research, but these never contain personally identifiable information.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-12 py-8">
<div class="text-center opacity-80 text-sm">
<div class="flex justify-center gap-5 mb-2">
<a class="pointer-events-none opacity-40"><i class="fab fa-twitter"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-facebook"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-linkedin"></i></a>
<a class="pointer-events-none opacity-40"><i class="fab fa-telegram"></i></a>
</div>
<a href="/privacy-policy" class="neo-link">Privacy Policy</a>
<p class="mt-2">© 2025 Huwaya.com. All rights reserved.</p>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
// FAQ accordion functionality
document.querySelectorAll('.border-b button').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
if (content.classList.contains('hidden')) {
content.classList.remove('hidden');
icon.setAttribute('data-feather', 'chevron-up');
} else {
content.classList.add('hidden');
icon.setAttribute('data-feather', 'chevron-down');
}
feather.replace();
});
});
</script>
</body>
</html> |