@media (min-width: 1024px) {
    .grid-cols-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/* CSS converted from Tailwind classes */
:root {
    --primary-blue: #194f94;
    --accent-blue: #0090d0;
    --bg-light: #ecf3fa;
}

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

/* Section padding */
.section-padding {
    padding: 80px 20px;
}

/* Background */
.bg-light {
    background-color: var(--bg-light);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Text center */
.text-center {
    text-align: center;
}

/* Margin bottom */
.mb-16 {
    margin-bottom: 64px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-2 {
    margin-bottom: 8px;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

/* Colors */
.text-primary {
    color: var(--primary-blue);
}

.text-accent {
    color: var(--accent-blue);
}

.text-gray-600 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-green-500 {
    color: #10b981;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
    gap: 16px;
}

.gap-8 {
    gap: 32px;
}

.gap-12 {
    gap: 48px;
}

.gap-16 {
    gap: 64px;
}

/* Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mr-auto {
    margin-right: auto;
}

/* Spacing */
.space-y-4 > * + * {
    margin-top: 16px;
}

.space-y-8 > * + * {
    margin-top: 32px;
}

.space-x-reverse {
    direction: ltr;
}

.space-x-4 > * + * {
    margin-left: 16px;
}

/* Padding */
.p-3 {
    padding: 12px;
}

.p-4 {
    padding: 16px;
}

.p-8 {
    padding: 32px;
}

.pt-6 {
    padding-top: 24px;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bottom-6 {
    bottom: 24px;
}

.right-6 {
    right: 24px;
}

/* Sizing */
.w-full {
    width: 100%;
}

.h-400 {
    height: 400px;
}

.h-500 {
    height: 500px;
}

.h-5 {
    height: 20px;
}

.h-6 {
    height: 24px;
}

.w-5 {
    width: 20px;
}

.w-6 {
    width: 24px;
}

/* Max width */
.max-w-3xl {
    max-width: 768px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Images */
.object-cover {
    object-fit: cover;
}

/* Border radius */
.rounded-xl {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 16px;
}

.rounded-lg {
    border-radius: 8px;
}

/* Shadows */
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Background colors */
.bg-white {
    background-color: white;
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-accent-10 {
    background-color: rgba(0, 144, 208, 0.1);
}

/* Backdrop blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.5s ease;
}

/* Hover effects */
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #00c9ff);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 144, 208, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 144, 208, 0.4);
}

/* Feature card */
.feature-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    gap: 16px;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    background-color: rgba(0, 144, 208, 0.1);
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.ship-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.ship-image:hover {
    transform: scale(1.05);
}

.ship-stats {
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 16px;
}

.stat-content {
    display: flex;
    gap: inherit;
    padding: 16px;
    transition: all 0.3s ease;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
}

.stat-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.spec-card {
    text-align: center;
}

.spec-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.spec-label {
    color: #6b7280;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-cols-md-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .text-4xl {
        font-size: 3rem;
        line-height: 1;
    }

    .grid-cols-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-cols-lg-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gap-lg-16 {
        gap: 64px;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .ship-image {
        height: 500px;
    }

    .p-lg-12 {
        padding: 48px;
    }
}

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

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

/* Icon styles */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-sm {
    width: 20px;
    height: 20px;
}
