:root {
    --primary-color: #0061ff;
    --secondary-color: #ffd700;
    --bg-light: #f0f7ff;
    --bg-card: #ffffff;
    --text-main: #1a2a6c;
    --text-muted: #5e6d8a;
    --accent-gradient: linear-gradient(135deg, #0061ff, #60efff);
    --gold-gradient: linear-gradient(135deg, #ffd700, #ffae00);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --shadow-soft: 0 10px 30px rgba(0, 97, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 97, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo::before {
    content: 'H';
    background: var(--gold-gradient);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 15% 50% 15%;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: wave 3s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { border-radius: 50% 15% 50% 15%; }
    50% { border-radius: 15% 50% 15% 50%; }
}

.logo span {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1511739001486-6bfe10ce785f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(240, 247, 255, 0.9), rgba(240, 247, 255, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    margin: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 97, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 97, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 97, 255, 0); }
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 97, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-8px);
}

/* Services */
.services {
    padding: 8rem 0;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3.5rem 2rem;
    background: var(--bg-light);
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 97, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: var(--shadow-soft);
}

.service-card .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Fleet / Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 400px;
    box-shadow: var(--shadow-soft);
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 97, 255, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: all 0.5s ease;
    color: white;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid #eef2f7;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.contact-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal-text.active {
    animation: slideUp 1s forwards;
}

.taxi-animation {
    position: absolute;
    bottom: 20%;
    left: 0;
    font-size: 3rem;
    animation: taxiDrive 15s linear infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes taxiDrive {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

/* Footer */
footer {
    padding: 5rem 2rem;
    background: white;
    text-align: center;
    border-top: 2px solid var(--bg-light);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}