Initial import of HarborSmith website
Some checks failed
build-website / build (push) Failing after 1m2s
Some checks failed
build-website / build (push) Failing after 1m2s
This commit is contained in:
818
website-mockups/maintenance.html
Normal file
818
website-mockups/maintenance.html
Normal file
@@ -0,0 +1,818 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Yacht Maintenance Services - HarborSmith</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap" rel="stylesheet">
|
||||
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
|
||||
<link rel="stylesheet" href="css/voyage-layout.css">
|
||||
<link rel="stylesheet" href="css/themes.css">
|
||||
<style>
|
||||
.maintenance-hero {
|
||||
position: relative;
|
||||
min-height: 60vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
|
||||
}
|
||||
|
||||
.maintenance-hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image: url('diver.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.maintenance-hero-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.maintenance-hero h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 800;
|
||||
color: white;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
.maintenance-hero p {
|
||||
font-size: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.services-overview {
|
||||
padding: 5rem 0;
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.services-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.service-card {
|
||||
background: var(--card-bg);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.service-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
|
||||
border-color: var(--accent-primary);
|
||||
}
|
||||
|
||||
.service-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin: 0 auto 1.5rem;
|
||||
background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-dark) 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.service-icon svg {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.service-title {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.service-description {
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 1.5rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.service-features {
|
||||
text-align: left;
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
|
||||
.service-feature {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
margin: 0.75rem 0;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.service-feature svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
color: var(--accent-primary);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.pricing-section {
|
||||
background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(30, 58, 95, 0.02) 100%);
|
||||
padding: 5rem 0;
|
||||
}
|
||||
|
||||
.pricing-table {
|
||||
background: var(--card-bg);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.pricing-header {
|
||||
background: var(--accent-primary);
|
||||
color: white;
|
||||
padding: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pricing-row {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
padding: 1rem 1.5rem;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.pricing-row:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.pricing-row:hover {
|
||||
background: rgba(30, 58, 95, 0.03);
|
||||
}
|
||||
|
||||
.pricing-service {
|
||||
font-weight: 500;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.pricing-frequency {
|
||||
text-align: center;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.pricing-amount {
|
||||
text-align: right;
|
||||
font-weight: 600;
|
||||
color: var(--accent-primary);
|
||||
}
|
||||
|
||||
.process-section {
|
||||
padding: 5rem 0;
|
||||
}
|
||||
|
||||
.process-steps {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.process-step {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process-step::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 40px;
|
||||
right: -1rem;
|
||||
width: 2rem;
|
||||
height: 2px;
|
||||
background: var(--accent-primary);
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.process-step:last-child::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.process-number {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin: 0 auto 1rem;
|
||||
background: var(--accent-primary);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.process-title {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.process-description {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.certifications {
|
||||
background: var(--card-bg);
|
||||
border-radius: 12px;
|
||||
padding: 3rem;
|
||||
margin: 3rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cert-logos {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 3rem;
|
||||
margin-top: 2rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.cert-logo {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background: rgba(30, 58, 95, 0.1);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 600;
|
||||
color: var(--accent-primary);
|
||||
}
|
||||
|
||||
.emergency-banner {
|
||||
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
|
||||
color: white;
|
||||
padding: 2rem;
|
||||
border-radius: 12px;
|
||||
margin: 3rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.emergency-banner h3 {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.emergency-banner p {
|
||||
margin-bottom: 1rem;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.emergency-button {
|
||||
background: white;
|
||||
color: #dc2626;
|
||||
padding: 0.75rem 2rem;
|
||||
border-radius: 6px;
|
||||
font-weight: 600;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.emergency-button:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.maintenance-hero h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.process-step::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.pricing-row {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.pricing-frequency,
|
||||
.pricing-amount {
|
||||
text-align: left;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Navigation -->
|
||||
<nav class="voyage-nav visible" id="voyageNav">
|
||||
<div class="nav-container">
|
||||
<div class="nav-brand">
|
||||
<img src="logo.jpg" alt="HarborSmith" class="nav-logo">
|
||||
<span>HarborSmith</span>
|
||||
</div>
|
||||
<div class="nav-links">
|
||||
<a href="index.html" class="nav-link">Home</a>
|
||||
<a href="charter.html" class="nav-link">Charters</a>
|
||||
<a href="maintenance.html" class="nav-link active">Maintenance</a>
|
||||
<a href="about.html" class="nav-link">About</a>
|
||||
<a href="contact.html" class="nav-link">Contact</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="maintenance-hero">
|
||||
<div class="maintenance-hero-content">
|
||||
<h1>Expert Yacht Maintenance</h1>
|
||||
<p>Keep your vessel in pristine condition with our professional maintenance services</p>
|
||||
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
|
||||
<button class="btn-primary-warm" onclick="window.location.href='portal-login.html'">
|
||||
<i data-lucide="user"></i>
|
||||
Client Portal
|
||||
</button>
|
||||
<button class="btn-secondary-warm" onclick="window.location.href='maintenance-booking.html'">
|
||||
<i data-lucide="calendar"></i>
|
||||
Schedule Service
|
||||
</button>
|
||||
<button class="btn-secondary-warm" onclick="document.getElementById('emergency').scrollIntoView()">
|
||||
<i data-lucide="alert-circle"></i>
|
||||
Emergency Repair
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Services Overview -->
|
||||
<section class="services-overview">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2 class="section-title">Comprehensive Maintenance Services</h2>
|
||||
<p class="section-subtitle">From routine care to major repairs, we've got you covered</p>
|
||||
</div>
|
||||
|
||||
<div class="services-grid">
|
||||
<!-- Regular Maintenance -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="wrench"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Regular Maintenance</h3>
|
||||
<p class="service-description">
|
||||
Keep your yacht running smoothly with our scheduled maintenance programs
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Oil changes & filter replacements</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Belt & hose inspections</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Battery maintenance</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Fluid level checks</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" onclick="window.location.href='maintenance-booking.html'">
|
||||
Schedule Maintenance
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Engine Services -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="settings"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Engine Services</h3>
|
||||
<p class="service-description">
|
||||
Complete engine diagnostics, repairs, and rebuilds by certified technicians
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Engine diagnostics</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Fuel system service</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Cooling system repairs</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Transmission service</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" onclick="window.location.href='maintenance-booking.html'">
|
||||
Book Engine Service
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Hull & Bottom -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="droplets"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Hull & Bottom Services</h3>
|
||||
<p class="service-description">
|
||||
Professional hull cleaning, painting, and bottom maintenance
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Bottom cleaning</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Anti-fouling paint</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Zinc replacement</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Gel coat repairs</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" onclick="window.location.href='maintenance-booking.html'">
|
||||
Schedule Hull Service
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Electrical Systems -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="zap"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Electrical Systems</h3>
|
||||
<p class="service-description">
|
||||
Complete electrical system maintenance and upgrades
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Wiring inspections</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Battery installation</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Navigation electronics</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Solar panel installation</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" onclick="window.location.href='maintenance-booking.html'">
|
||||
Book Electrical Service
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Interior & Upholstery -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="palette"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Interior & Upholstery</h3>
|
||||
<p class="service-description">
|
||||
Interior refurbishment, upholstery repair, and detailing services
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Upholstery cleaning</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Canvas & cover repairs</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Carpet replacement</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Wood refinishing</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" onclick="window.location.href='maintenance-booking.html'">
|
||||
Schedule Interior Service
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Emergency Repairs -->
|
||||
<div class="service-card">
|
||||
<div class="service-icon">
|
||||
<i data-lucide="alert-triangle"></i>
|
||||
</div>
|
||||
<h3 class="service-title">Emergency Repairs</h3>
|
||||
<p class="service-description">
|
||||
24/7 emergency repair service to get you back on the water fast
|
||||
</p>
|
||||
<div class="service-features">
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>24/7 availability</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Mobile service</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>Towing assistance</span>
|
||||
</div>
|
||||
<div class="service-feature">
|
||||
<i data-lucide="check"></i>
|
||||
<span>On-water repairs</span>
|
||||
</div>
|
||||
</div>
|
||||
<button class="btn-service" style="background: #dc2626;" onclick="window.location.href='tel:4155550123'">
|
||||
Call Emergency Line
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Pricing Section -->
|
||||
<section class="pricing-section">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2 class="section-title">Transparent Pricing</h2>
|
||||
<p class="section-subtitle">Clear, competitive rates for all services</p>
|
||||
</div>
|
||||
|
||||
<div class="pricing-table">
|
||||
<div class="pricing-header">
|
||||
<h3>Service Pricing Guide</h3>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Basic Maintenance Package</div>
|
||||
<div class="pricing-frequency">Monthly</div>
|
||||
<div class="pricing-amount">From $299</div>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Engine Service</div>
|
||||
<div class="pricing-frequency">Per Service</div>
|
||||
<div class="pricing-amount">From $450</div>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Hull Cleaning</div>
|
||||
<div class="pricing-frequency">Per Cleaning</div>
|
||||
<div class="pricing-amount">From $200</div>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Bottom Paint</div>
|
||||
<div class="pricing-frequency">Per Application</div>
|
||||
<div class="pricing-amount">From $1,500</div>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Electrical Diagnostics</div>
|
||||
<div class="pricing-frequency">Per Hour</div>
|
||||
<div class="pricing-amount">$125</div>
|
||||
</div>
|
||||
<div class="pricing-row">
|
||||
<div class="pricing-service">Emergency Service</div>
|
||||
<div class="pricing-frequency">Per Call</div>
|
||||
<div class="pricing-amount">From $350</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="text-align: center; margin-top: 2rem; color: var(--text-secondary);">
|
||||
* Prices vary based on vessel size and specific requirements. Contact us for a detailed quote.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Process Section -->
|
||||
<section class="process-section">
|
||||
<div class="container">
|
||||
<div class="section-header">
|
||||
<h2 class="section-title">How It Works</h2>
|
||||
<p class="section-subtitle">Simple steps to professional yacht maintenance</p>
|
||||
</div>
|
||||
|
||||
<div class="process-steps">
|
||||
<div class="process-step">
|
||||
<div class="process-number">1</div>
|
||||
<h3 class="process-title">Request Service</h3>
|
||||
<p class="process-description">Fill out our online form or call us to schedule</p>
|
||||
</div>
|
||||
<div class="process-step">
|
||||
<div class="process-number">2</div>
|
||||
<h3 class="process-title">Free Inspection</h3>
|
||||
<p class="process-description">We assess your yacht and provide a detailed quote</p>
|
||||
</div>
|
||||
<div class="process-step">
|
||||
<div class="process-number">3</div>
|
||||
<h3 class="process-title">Professional Service</h3>
|
||||
<p class="process-description">Our certified technicians complete the work</p>
|
||||
</div>
|
||||
<div class="process-step">
|
||||
<div class="process-number">4</div>
|
||||
<h3 class="process-title">Quality Check</h3>
|
||||
<p class="process-description">We ensure everything meets our high standards</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Certifications -->
|
||||
<section class="container">
|
||||
<div class="certifications">
|
||||
<h2 class="section-title">Certified Excellence</h2>
|
||||
<p class="section-subtitle">Our technicians are certified by leading marine organizations</p>
|
||||
<div class="cert-logos">
|
||||
<div class="cert-logo">ABYC</div>
|
||||
<div class="cert-logo">NMEA</div>
|
||||
<div class="cert-logo">Mercury</div>
|
||||
<div class="cert-logo">Yamaha</div>
|
||||
<div class="cert-logo">Volvo</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Emergency Banner -->
|
||||
<section class="container" id="emergency">
|
||||
<div class="emergency-banner">
|
||||
<h3>24/7 Emergency Service</h3>
|
||||
<p>Engine failure? Taking on water? We're here to help, day or night.</p>
|
||||
<button class="emergency-button" onclick="window.location.href='tel:4155550911'">
|
||||
<i data-lucide="phone"></i>
|
||||
Call Emergency Line: (415) 555-0911
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Client Portal Section -->
|
||||
<section class="booking-cta" style="margin-top: 5rem; background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);">
|
||||
<div class="booking-container">
|
||||
<div class="booking-content">
|
||||
<h2 class="booking-title" style="color: white;">Existing Clients - Access Your Portal</h2>
|
||||
<p class="booking-subtitle" style="color: rgba(255,255,255,0.9);">
|
||||
Manage your vessels, schedule services, view reports, and pay invoices online
|
||||
</p>
|
||||
|
||||
<div class="booking-options">
|
||||
<div class="booking-card" style="background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);">
|
||||
<span class="booking-icon" style="background: rgba(255,255,255,0.2);">
|
||||
<i data-lucide="user" style="color: white;"></i>
|
||||
</span>
|
||||
<h3 style="color: white;">Client Portal</h3>
|
||||
<p style="color: rgba(255,255,255,0.9);">Access your maintenance dashboard</p>
|
||||
<button class="btn-booking" style="background: white; color: #1e3a5f;" onclick="window.location.href='portal-login.html'">
|
||||
Login Now
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="booking-card" style="background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);">
|
||||
<span class="booking-icon" style="background: rgba(255,255,255,0.2);">
|
||||
<i data-lucide="eye" style="color: white;"></i>
|
||||
</span>
|
||||
<h3 style="color: white;">View Demo</h3>
|
||||
<p style="color: rgba(255,255,255,0.9);">See the portal in action</p>
|
||||
<button class="btn-booking" style="background: rgba(255,255,255,0.2); color: white; border: 1px solid white;" onclick="window.location.href='maintenance/maintenance-dashboard.html'">
|
||||
Demo Access
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="booking-card" style="background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.3);">
|
||||
<span class="booking-icon" style="background: rgba(255,255,255,0.2);">
|
||||
<i data-lucide="user-plus" style="color: white;"></i>
|
||||
</span>
|
||||
<h3 style="color: white;">New Client?</h3>
|
||||
<p style="color: rgba(255,255,255,0.9);">Register for portal access</p>
|
||||
<button class="btn-booking" style="background: rgba(255,255,255,0.2); color: white; border: 1px solid white;" onclick="window.location.href='contact.html'">
|
||||
Get Started
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Section -->
|
||||
<section class="booking-cta" style="margin-top: 3rem;">
|
||||
<div class="booking-container">
|
||||
<div class="booking-content">
|
||||
<h2 class="booking-title">Ready to Schedule Your Service?</h2>
|
||||
<p class="booking-subtitle">
|
||||
Keep your yacht in perfect condition with regular professional maintenance
|
||||
</p>
|
||||
|
||||
<div class="booking-options">
|
||||
<div class="booking-card">
|
||||
<span class="booking-icon">
|
||||
<i data-lucide="calendar"></i>
|
||||
</span>
|
||||
<h3>Schedule Service</h3>
|
||||
<p>Book your maintenance online</p>
|
||||
<button class="btn-booking" onclick="window.location.href='maintenance-booking.html'">
|
||||
Book Now
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="booking-card featured">
|
||||
<span class="booking-icon">
|
||||
<i data-lucide="phone"></i>
|
||||
</span>
|
||||
<h3>Call Us</h3>
|
||||
<p>Speak with a service advisor</p>
|
||||
<button class="btn-booking primary" onclick="window.location.href='tel:4155550123'">
|
||||
(415) 555-0123
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="booking-card">
|
||||
<span class="booking-icon">
|
||||
<i data-lucide="file-text"></i>
|
||||
</span>
|
||||
<h3>Get a Quote</h3>
|
||||
<p>Free estimates for all services</p>
|
||||
<button class="btn-booking" onclick="window.location.href='contact.html'">
|
||||
Request Quote
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="voyage-footer">
|
||||
<div class="footer-container">
|
||||
<div class="footer-content">
|
||||
<div class="footer-brand">
|
||||
<img src="logo.jpg" alt="HarborSmith" class="footer-logo">
|
||||
<h3>HarborSmith</h3>
|
||||
<p>Your trusted partner for Bay Area yacht services</p>
|
||||
</div>
|
||||
|
||||
<div class="footer-links">
|
||||
<h4>Quick Links</h4>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="charter.html">Charters</a>
|
||||
<a href="maintenance.html">Maintenance</a>
|
||||
<a href="about.html">About</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</div>
|
||||
|
||||
<div class="footer-contact">
|
||||
<h4>Get in Touch</h4>
|
||||
<p><i data-lucide="map-pin" class="footer-icon"></i> Pier 39, San Francisco, CA</p>
|
||||
<p><i data-lucide="phone" class="footer-icon"></i> (415) 555-0123</p>
|
||||
<p><i data-lucide="alert-circle" class="footer-icon"></i> Emergency: (415) 555-0911</p>
|
||||
<p><i data-lucide="mail" class="footer-icon"></i> service@harborsmith.com</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom">
|
||||
<p>© 2024 HarborSmith Yacht Services. All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
// Initialize Lucide icons
|
||||
lucide.createIcons();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user