:root {
    --primary-color: #0a192f;
    /* Midnight Sapphire */
    --accent-color: #c5a059;
    /* Brushed Gold */
    --accent-glow: rgba(197, 160, 89, 0.4);
    --text-main: #ccd6f6;
    --text-dim: #8892b0;
    --bg-main: #0a192f;
    --bg-soft: #112240;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Animations */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.animate-reveal {
    opacity: 0;
    animation: revealUp 1s forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.5s;
}

.hero-buttons {
    animation-delay: 0.8s;
}

/* Header */
.header {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.nav a {
    margin-left: 35px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-nav {
    border: 1px solid var(--accent-color);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
}

.btn-nav:hover {
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    animation: heroZoom 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 25, 47, 0.4) 0%, rgba(10, 25, 47, 0.9) 100%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-5px);
}

.btn-call {
    background: var(--accent-color);
    color: var(--bg-main);
}

.btn-call:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Global Section Styles */
.section {
    padding: 8rem 5%;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title span {
    color: var(--accent-color);
}

.section-desc {
    text-align: center;
    color: var(--text-dim);
    max-width: 800px;
    margin: -2rem auto 4rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--bg-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Services Card 2.0 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(197, 160, 89, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 1.5rem;
}

/* Fleet Showcase */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--bg-soft);
    border-radius: 12px;
    overflow: hidden;
    filter: grayscale(1);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.fleet-card:hover {
    filter: grayscale(0);
    transform: scale(1.02);
    border-color: var(--accent-color);
}

.fleet-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.fleet-info {
    padding: 2.5rem;
    text-align: center;
}

.fleet-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.fleet-info p {
    color: var(--text-dim);
}

/* Contact CTA */
.cta-banner {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?q=80&w=1920&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    padding: 10rem 5%;
    text-align: center;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.package-card {
    background: var(--bg-soft);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--bg-main);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-badge span {
    text-decoration: line-through;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-left: 5px;
}

.tag-premium,
.tag-popular {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-info {
    padding: 2rem;
}

.package-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: #fff;
}

.package-info .subtitle {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.package-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Prepaid Card */
.prepaid-info {
    margin-top: 4rem;
}

.prepaid-card {
    background: linear-gradient(135deg, var(--bg-soft), rgba(197, 160, 89, 0.1));
    border: 1px solid var(--accent-color);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.prepaid-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.prepaid-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.prepaid-card p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.qr-placeholder {
    background: #fff;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
}

.qr-placeholder i {
    font-size: 4rem;
    margin-bottom: 10px;
}

.qr-placeholder p {
    font-size: 0.7rem;
    color: #666;
    font-weight: 700;
    margin: 0;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--accent-color);
    width: auto;
    padding: 0 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--bg-main);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: block;
        color: var(--accent-color);
        font-size: 1.5rem;
    }

    .section {
        padding: 5rem 5%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}