Features: - Complete Luftglanz drone cleaning website - AI chat assistant integrated with OpenAI API - Expert product advice for AGO Quart and Mellerud cleaning products - Formal German language support (Sie form) - Secure PHP backend for API calls - Responsive design with mobile support - Product-specific knowledge base - Safety statements from manufacturers - Multi-page integration (index, products, services, contact) Technical components: - AI chat widget (js/ai-chat.js) - Chat styling (css/components/ai-chat.css) - Backend API (ai-chat-api.php) - Product knowledge base with detailed specifications - Demo and documentation files
427 lines
15 KiB
HTML
427 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Leistungen - Luftglanz</title>
|
|
<link rel="icon" href="../images/favicon_logo.png" type="image/png">
|
|
<link rel="stylesheet" href="../css/normalize.css">
|
|
<link rel="stylesheet" href="../css/main.css">
|
|
<link rel="stylesheet" href="../css/components/header.css">
|
|
<link rel="stylesheet" href="../css/components/footer.css">
|
|
<link rel="stylesheet" href="../css/components/hero.css">
|
|
<link rel="stylesheet" href="../css/components/forms.css">
|
|
<link rel="stylesheet" href="../css/components/ai-chat.css">
|
|
<style>
|
|
:root {
|
|
--primary-color: #3498db; /* Clean blue primary */
|
|
--accent-color: #00c2cb; /* Teal accent */
|
|
--secondary-color: #505050;
|
|
--bg-light: #f8f9fa; /* Very light background */
|
|
--card-bg: #ffffff; /* White card background */
|
|
--text-dark: #333333;
|
|
--text-medium: #505050;
|
|
--text-light: #707070;
|
|
--gradient-primary: linear-gradient(90deg, #3498db 0%, #00c2cb 100%);
|
|
--gradient-secondary: linear-gradient(90deg, #2980b9 0%, #009ea6 100%);
|
|
--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
--spacing-section: 5rem 0;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: var(--text-medium);
|
|
background-color: var(--bg-light);
|
|
background-image:
|
|
linear-gradient(120deg, rgba(0, 120, 212, 0.05) 0%, transparent 40%),
|
|
linear-gradient(240deg, rgba(0, 178, 148, 0.05) 0%, transparent 40%);
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1.5rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
/* Header styling */
|
|
header {
|
|
padding: 1.5rem 0;
|
|
background: rgba(232, 233, 234, 0.95); /* Changed to match --bg-light variable */
|
|
backdrop-filter: blur(8px);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
|
|
height: auto;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.logo-img {
|
|
height: 40px;
|
|
width: auto;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.logo h1 {
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
background: var(--gradient-primary);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
text-fill-color: transparent;
|
|
}
|
|
|
|
/* Navigation styling */
|
|
.main-nav ul {
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.main-nav a {
|
|
color: var(--text-medium);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.5px;
|
|
padding: 0.5rem 0;
|
|
position: relative;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover, .main-nav a.active {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.main-nav a::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 0;
|
|
height: 2px;
|
|
bottom: 0;
|
|
left: 0;
|
|
background: var(--gradient-primary);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.main-nav a:hover::after, .main-nav a.active::after {
|
|
width: 100%;
|
|
}
|
|
|
|
/* Section styling */
|
|
.section-container {
|
|
padding: 2.5rem;
|
|
margin-bottom: 2rem;
|
|
background-color: var(--card-bg);
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
margin-top: 0;
|
|
}
|
|
|
|
.section-container h2 {
|
|
color: var(--text-dark);
|
|
font-size: 2.2rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.section-container h2::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 3px;
|
|
background: var(--gradient-primary);
|
|
bottom: -0.75rem;
|
|
left: 0;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.section-container h3 {
|
|
color: var(--text-dark);
|
|
font-size: 1.5rem;
|
|
margin-top: 2.5rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.section-container h3::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0.35rem;
|
|
height: 1rem;
|
|
width: 3px;
|
|
background: var(--gradient-primary);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.section-container p {
|
|
color: var(--text-light);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* Service cards */
|
|
.service-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.service-card {
|
|
background-color: var(--card-bg);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: 10px;
|
|
padding: 2rem;
|
|
position: relative;
|
|
transition: all 0.3s ease;
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow);
|
|
}
|
|
|
|
.service-card h3 {
|
|
color: var(--text-dark);
|
|
font-size: 1.4rem;
|
|
margin-top: 0;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.service-card h3::before {
|
|
display: none;
|
|
}
|
|
|
|
.service-card p {
|
|
color: var(--text-light);
|
|
}
|
|
|
|
/* Language Switcher - Updated to match About Us page */
|
|
.language-switcher {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.language-switcher button {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: var(--text-medium);
|
|
padding: 0.4rem 0.75rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.language-switcher button.active,
|
|
.language-switcher button:hover {
|
|
background: var(--gradient-primary);
|
|
border-color: transparent;
|
|
}
|
|
|
|
/* Remove Stars Background */
|
|
.stars {
|
|
display: none;
|
|
}
|
|
|
|
/* Footer styling */
|
|
footer {
|
|
background-color: var(--text-dark);
|
|
padding: 2rem 0;
|
|
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
|
text-align: center;
|
|
color: #aaaaaa;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
main {
|
|
padding-top: 8rem;
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* Mobile styles */
|
|
@media (max-width: 768px) {
|
|
.main-nav {
|
|
display: none;
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
width: 100%;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
padding: 1rem 0;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.main-nav.active {
|
|
display: block;
|
|
}
|
|
|
|
.main-nav ul {
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
.main-nav li {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0.5rem 0;
|
|
margin: 0;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.main-nav li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.main-nav a {
|
|
display: block;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
.section-container {
|
|
padding: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="container">
|
|
<div class="header-content">
|
|
<div class="logo">
|
|
<img src="../images/favicon_logo.png" alt="Luftglanz Logo" class="logo-img">
|
|
<h1 data-i18n="roof_drone">Luftglanz</h1>
|
|
</div>
|
|
|
|
<nav class="main-nav" id="mainNav">
|
|
<ul>
|
|
<li><a href="../index.html" data-i18n="nav_home">Home</a></li>
|
|
<li><a href="services.html" class="active" data-i18n="nav_services">Services</a></li>
|
|
<li><a href="../index.html#how-it-works" data-i18n="nav_how_it_works">How It Works</a></li>
|
|
<li><a href="../index.html#faq" data-i18n="nav_faq">FAQ</a></li>
|
|
<li><a href="../index.html#contact" data-i18n="nav_contact">Contact</a></li>
|
|
<li><a href="products.html" data-i18n="nav_products">Products</a></li>
|
|
<li><a href="gallery.html" data-i18n="nav_gallery">Gallery</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<section class="hero">
|
|
<div class="container">
|
|
<div class="hero-content">
|
|
<h2 data-i18n="services_hero_title">Professional <span>Drone Roof Cleaning</span> Services</h2>
|
|
<p data-i18n="services_hero_subtitle">Our specialized drones deliver thorough cleaning with advanced technology</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section-container">
|
|
<h2 data-i18n="services_title">Our Services</h2>
|
|
<p data-i18n="services_description">We offer professional roof cleaning and maintenance services using cutting-edge drone technology that delivers superior results with enhanced safety.</p>
|
|
|
|
<div class="service-grid">
|
|
<div class="service-card" id="standard">
|
|
<h3 data-i18n="service_drone_title">Drone Roof Cleaning</h3>
|
|
<p data-i18n="service_drone_description">Unsere Drohnen sind mit speziellen Sprühsystemen ausgestattet, die effektiv Schmutz, Moos und Algen entfernen. Dieser kontaktlose Ansatz beseitigt das Risiko von Ziegelschäden und Arbeiterunfällen, die mit herkömmlichen Dachreinigungsmethoden verbunden sind.</p>
|
|
</div>
|
|
|
|
<div class="service-card" id="inspection">
|
|
<h3 data-i18n="service_inspection_detailed_title">Inspection Services</h3>
|
|
<p data-i18n="service_inspection_detailed_description">In addition to cleaning, our drones can perform detailed inspections of your roof, identifying potential issues before they become costly repairs. Our high-resolution cameras capture every detail, allowing us to spot missing shingles, damaged flashing, or other concerns that might be missed by the naked eye.</p>
|
|
</div>
|
|
|
|
<div class="service-card" id="maintenance">
|
|
<h3 data-i18n="service_maintenance_title">Maintenance Packages</h3>
|
|
<p data-i18n="service_maintenance_description">We offer various maintenance packages to keep your roof in top condition year-round, ensuring longevity and aesthetic appeal. Regular maintenance can extend your roof's lifespan by up to 25% while preventing costly repairs. Our packages can be customized to fit your specific roofing needs and budget.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<h3 data-i18n="premium_services_title">Premium Add-On Services</h3>
|
|
<p data-i18n="premium_services_description">Beyond our core services, we offer specialized treatments including waterproofing applications, UV-protective coatings, and thermal scanning to identify potential heat leaks. These additional services help maximize your roof's performance and energy efficiency while extending its overall lifespan.</p>
|
|
|
|
<h3 data-i18n="environmental_approach_title">Unser Effizienzkonzept</h3>
|
|
<p data-i18n="environmental_approach_description">Unsere präzise Drohnenanwendungsmethode reduziert den Wasserverbrauch im Vergleich zu herkömmlichen Hochdruckreinigungstechniken um bis zu 60%. Dies bedeutet eine schnellere, sauberere Reinigung in weniger Zeit.</p>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<p data-i18n="footer_text">© 2023 Luftglanz. Alle Rechte vorbehalten.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="../js/translations.js"></script>
|
|
<script src="../js/language-manager.js"></script>
|
|
<script src="../js/ai-chat.js"></script>
|
|
<script src="../js/drone-image-animation.js"></script>
|
|
<script>
|
|
// Smooth scrolling
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const navLinks = document.querySelectorAll('a[href^="#"]');
|
|
|
|
navLinks.forEach(link => {
|
|
link.addEventListener('click', function(e) {
|
|
if(this.getAttribute('href') !== '#') {
|
|
e.preventDefault();
|
|
|
|
const targetId = this.getAttribute('href');
|
|
const targetElement = document.querySelector(targetId);
|
|
|
|
if (targetElement) {
|
|
window.scrollTo({
|
|
top: targetElement.offsetTop - 100,
|
|
behavior: 'smooth'
|
|
});
|
|
|
|
history.pushState(null, null, targetId);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |