newui / contact.html
buosam's picture
create new page: https://huwaya.com/jobs - Initial Deployment
c8cd578 verified
<!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>