/* filepath: style.css */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --accent-gold: #c9a227;
    --accent-gold-light: #e6c354;
    --accent-navy: #1e3a5f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 8px 16px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.header-top {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: var(--accent-gold);
}

.header-contact svg {
    flex-shrink: 0;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.header-social a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.header-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin-top: 80px;
}

.navbar {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 3px;
    background: var(--bg-primary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-gold);
    color: var(--bg-primary) !important;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-gold-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Slideshow */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.96) 0%, rgba(178, 140, 30, 0.95) 100%);
    color: var(--bg-primary);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(228, 192, 83, 0.96) 0%, rgba(242, 206, 104, 0.96) 100%);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(201, 162, 39, 0.24);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
    color: var(--text-primary);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201, 162, 39, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0d0d 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #111111 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Why Choose Us */
.why-us {
    background: linear-gradient(180deg, #0e0e0e 0%, var(--bg-primary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: 10px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Fleet Section */
.fleet {
    background: linear-gradient(180deg, #111111 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Slide */
.slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
}

.slide-cards {
    display: flex;
    gap: 24px;
    padding: 0;
    justify-content: space-between;
}

/* Fleet Card */
.fleet-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    max-width: calc(33.333% - 16px);
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    border-color: rgba(201, 162, 39, 0.5);
}

.fleet-image {
    height: 220px;
    background: linear-gradient(135deg, #161616 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fleet-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 80%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(201, 162, 39, 0.95);
    color: var(--bg-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.fleet-category {
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.fleet-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.fleet-price {
    font-size: 24px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.fleet-price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.fleet-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(201, 162, 39, 0.45);
    color: var(--accent-gold);
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-btn:hover {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.96) 0%, rgba(178, 140, 30, 0.95) 100%);
    color: var(--bg-primary);
    box-shadow: 0 14px 30px rgba(201, 162, 39, 0.18);
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-arrow:disabled:hover {
    border-color: var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.slider-arrow svg {
    transition: transform 0.3s ease;
}

.slider-prev:hover svg {
    transform: translateX(-3px);
}

.slider-next:hover svg {
    transform: translateX(3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.slider-dot:hover:not(.active) {
    background: var(--text-secondary);
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 18px;
}

.booking-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.booking-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.booking-form {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 40px;
}

.booking-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--accent-gold-light);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #0c0c0c 0%, var(--bg-primary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(180deg, #111111 0%, #151515 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--bg-primary);
    font-weight: 600;
}

.author-info h4 {
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #111111 0%, var(--bg-secondary) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-gold);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.contact-card a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-gold-light);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo-container {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
}

.footer-social a:hover svg {
    stroke: var(--bg-primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
}

.footer-column h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 100px 40px 40px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-cards {
        gap: 20px;
    }

    .fleet-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-divider {
        margin-top: 0;
    }

    .navbar {
        top: 0;
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-img {
        height: 35px;
        max-width: 70px;
        border-width: 1px;
    }

    .logo-text {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

    /* Slider - 1 card on mobile */
    .slide-cards {
        flex-direction: column;
        gap: 0;
    }

    .fleet-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    .slider-nav {
        margin-top: 30px;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-info h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Hero Responsive */
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}