@media (min-width: 1024px) {
    .grid-cols-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
/* CSS converted from Tailwind classes */
:root {
    --primary-blue: #194f94 !important;
    --accent-blue: #0090d0 !important;
    --bg-light: #f0f5ff !important;
}

* {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Section padding */
.section-padding {
    padding: 80px 20px !important;
}

/* Background */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* Container */
.container {
    max-width: 1280px !important;
    margin: 0 auto !important;
}

/* Text center */
.text-center {
    text-align: center !important;
}

/* Margin bottom */
.mb-16 {
    margin-bottom: 64px !important;
}

.mb-6 {
    margin-bottom: 24px !important;
}

.mb-8 {
    margin-bottom: 32px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}

.text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
}

.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-medium {
    font-weight: 500 !important;
}

/* Colors */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-accent {
    color: var(--accent-blue) !important;
}

.text-gray-600 {
    color: #6b7280 !important;
}

.text-gray-700 {
    color: #374151 !important;
}

.text-green-500 {
    color: #10b981 !important;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), #00c9ff, var(--primary-blue)) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientMove 4s ease infinite !important;
}

@keyframes gradientMove {
    0% { background-position: 0% 50% !important; }
    50% { background-position: 100% 50% !important; }
    100% { background-position: 0% 50% !important; }
}

/* Grid */
.grid {
    display: grid !important;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.gap-4 {
    gap: 16px !important;
}

.gap-8 {
    gap: 32px !important;
}

.gap-12 {
    gap: 48px !important;
}

.gap-16 {
    gap: 64px !important;
}

/* Flexbox */
.flex {
    display: flex !important;
}

.items-center {
    align-items: center !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.mr-auto {
    margin-right: auto !important;
}

/* Spacing */
.space-y-4 > * + * {
    margin-top: 16px !important;
}

.space-y-8 > * + * {
    margin-top: 32px !important;
}

.space-x-reverse {
    direction: ltr !important;
}

.space-x-4 > * + * {
    margin-left: 16px !important;
}

/* Padding */
.p-3 {
    padding: 12px !important;
}

.p-4 {
    padding: 16px !important;
}

.p-8 {
    padding: 32px !important;
}

.pt-6 {
    padding-top: 24px !important;
}

/* Positioning */
.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.inset-0 {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
}

.bottom-6 {
    bottom: 24px !important;
}

.right-6 {
    right: 24px !important;
}

/* Sizing */
.w-full {
    width: 100% !important;
}

.h-400 {
    height: 400px !important;
}

.h-500 {
    height: 500px !important;
}

.h-5 {
    height: 20px !important;
}

.h-6 {
    height: 24px !important;
}

.w-5 {
    width: 20px !important;
}

.w-6 {
    width: 24px !important;
}

/* Max width */
.max-w-3xl {
    max-width: 768px !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Images */
.object-cover {
    object-fit: cover !important;
}

/* Border radius */
.rounded-xl {
    border-radius: 12px !important;
}

.rounded-2xl {
    border-radius: 16px !important;
}

.rounded-lg {
    border-radius: 8px !important;
}

/* Shadows */
.shadow-md {
    box-shadow: 0 4px 12px -2px rgba(0, 90, 160, 0.08),
        0 2px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px -5px rgba(0, 90, 160, 0.1),
        0 4px 10px -2px rgba(0, 0, 0, 0.04) !important;
}

.shadow-2xl {
    box-shadow: 0 25px 60px -15px rgba(0, 90, 160, 0.2) !important;
}

.shadow-xl {
    box-shadow: 0 20px 40px -8px rgba(0, 90, 160, 0.12),
        0 10px 15px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Background colors */
.bg-white {
    background-color: white !important;
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.bg-accent-10 {
    background-color: rgba(0, 144, 208, 0.1) !important;
}

/* Backdrop blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px) !important;
}

/* Transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.transition-transform {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Hover effects */
.hover-scale:hover {
    transform: scale(1.05) !important;
}

.hover-shadow:hover {
    box-shadow: 0 20px 40px -8px rgba(0, 90, 160, 0.15),
        0 10px 15px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #00c9ff) !important;
    background-size: 200% 200% !important;
    color: white !important;
    padding: 14px 36px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 144, 208, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.02em !important;
}

.btn-primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent) !important;
    transition: left 0.5s ease !important;
}

.btn-primary:hover::before {
    left: 100% !important;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(0, 144, 208, 0.45) !important;
}

/* Feature card */
.feature-card {
    display: flex !important;
    align-items: center !important;
    padding: 18px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px -2px rgba(0, 90, 160, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    gap: 16px !important;
    border: 1px solid rgba(0, 144, 208, 0.06) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 4px !important;
    height: 0 !important;
    background: linear-gradient(to bottom, var(--accent-blue), var(--primary-blue)) !important;
    transition: height 0.4s ease !important;
}

.feature-card:hover::before {
    height: 100% !important;
}

.feature-card:hover {
    box-shadow: 0 12px 30px rgba(0, 90, 160, 0.12) !important;
    transform: translateY(-4px) translateX(4px) !important;
}

.feature-icon {
    background: linear-gradient(135deg, rgba(0, 144, 208, 0.1), rgba(25, 79, 148, 0.06)) !important;
    padding: 14px !important;
    border-radius: 12px !important;
    flex-shrink: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue)) !important;
    transform: scale(1.05) !important;
}

.feature-card:hover .feature-icon svg {
    color: white !important;
}

.ship-image {
    width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 60px -15px rgba(0, 90, 160, 0.25) !important;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s ease !important;
}

.ship-image:hover {
    transform: scale(1.03) rotate(0.3deg) !important;
    box-shadow: 0 35px 70px -15px rgba(0, 90, 160, 0.3) !important;
}

.ship-stats {
    bottom: 24px !important;
    right: 24px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px rgba(0, 90, 160, 0.1) !important;
}

.stat-content {
    display: flex !important;
    gap: inherit !important;
    padding: 16px !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-content: stretch !important;
    justify-content: space-around !important;
    border-radius: 12px !important;
}

.stat-content:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 90, 160, 0.1) !important;
    background: rgba(0, 144, 208, 0.03) !important;
}

.spec-card {
    text-align: center !important;
}

.spec-value {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    color: var(--accent-blue) !important;
    margin-bottom: 8px !important;
}

.spec-label {
    color: #6b7280 !important;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-cols-md-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1024px) {
    .text-4xl {
        font-size: 3rem !important;
        line-height: 1 !important;
    }

    .grid-cols-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .grid-cols-lg-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    .gap-lg-16 {
        gap: 64px !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .ship-image {
        height: 500px !important;
    }

    .p-lg-12 {
        padding: 48px !important;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0 !important;
        transform: translateY(30px) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes shimmerShip {
    0% { background-position: -200% 0 !important; }
    100% { background-position: 200% 0 !important; }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out !important;
}

/* Icon styles */
.icon {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    fill: none !important;
}

.icon-sm {
    width: 20px !important;
    height: 20px !important;
}
