.company-header {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    color: white;
    padding: 2rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* Simple subtle overlay for depth */
.company-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

/* Relocated Share Actions Styles */
.share-actions-relocated {
    padding: 1rem 0;
}

.share-btn-relocated {
    border-radius: 20px;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-color: #e5e7eb;
}

.share-btn-relocated:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-btn-relocated.btn-outline-primary:hover {
    background: var(--vp-teal);
    border-color: var(--vp-teal);
}

.company-logo {
    max-width: 80px;
    max-height: 80px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero CTA Buttons */
.hero-ctas {
    margin-top: 1.5rem;
    position: relative;
    z-index: 10; /* Fix z-index issue for button container */
}

.hero-ctas .btn {
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 11; /* Higher z-index for individual buttons */
}

.hero-ctas .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-ctas .btn-light:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

/* Fleet Stats Vertical Layout */
.fleet-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* Fleet stat items in hero section (dark background) */
.company-header .fleet-stat-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.company-header .fleet-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.company-header .fleet-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.company-header .fleet-stat-item .stat-icon i {
    font-size: 1.25rem;
    color: white;
}

.company-header .fleet-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.company-header .fleet-stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Fleet stat items in Fleet Overview section (white background) */
.fleet-overview-container .fleet-stat-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.fleet-overview-container .fleet-stat-item:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.fleet-overview-container .fleet-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.2);
}

.fleet-overview-container .fleet-stat-item .stat-icon i {
    font-size: 1.25rem;
    color: white;
}

.fleet-stat-item .stat-content {
    flex: 1;
}

.fleet-overview-container .fleet-stat-item .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f766e;
    line-height: 1.2;
}

.fleet-overview-container .fleet-stat-item .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Fleet Analytics Section Styling */
.fleet-analytics-section {
    position: relative;
}

.fleet-analytics-section .card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* Removed hover effect for main Fleet Analytics card */

.fleet-analytics-section .card-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.fleet-analytics-section .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937 !important;
    margin-bottom: 0.5rem;
}

.fleet-analytics-section .card-header h3 i {
    color: #0f766e;
}

.fleet-analytics-section .card-header p {
    color: #6b7280 !important;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.fleet-analytics-section .card-body {
    padding: 2rem;
    background: #ffffff;
}

/* Company Information Panel Header Styling */
.company-info-panel .card-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 1.5rem !important;
}

.company-info-panel .card-header h3 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 0 !important;
}

.company-info-panel .card-header h3 i {
    color: #0f766e !important;
}

/* Individual Analytics Chart Cards Header Styling */
.fleet-analytics-section .card .card-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 1.25rem !important;
}

.fleet-analytics-section .card .card-header h5 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 0 !important;
}

.fleet-analytics-section .card .card-header h5 i {
    color: #0f766e !important;
}

/* Enhanced card styling for all analytics cards - no hover effects */
.fleet-analytics-section .card .card {
    border: 1px solid #d1d5db !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    border-radius: 8px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .fleet-stat-item {
        padding: 0.75rem;
    }
    
    .fleet-stat-item .stat-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .fleet-stat-item .stat-number {
        font-size: 1.25rem;
    }
}

.company-status-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.claim-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.claim-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.claim-cta:active {
    transform: translateY(-1px);
}

.fleet-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.fleet-table th {
    background: var(--vp-teal) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-color: #26a79c !important;
    padding: 1rem;
}

.fleet-table td {
    padding: 1rem 1.25rem;
    border-color: #eef2f6;
    vertical-align: middle;
}

.fleet-table tbody tr:nth-child(even) {
    background-color: rgba(248, 250, 252, 0.5);
}

.fleet-table tbody tr {
    transition: all 0.2s ease;
}

/* Removed hover effects from vessel table rows for cleaner UX */

.role-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
    background: var(--vp-teal);
    color: white;
}

.info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vp-teal);
}

.stat-label {
    color: var(--vp-grey-500);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sticky Floating CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vp-teal) 0%, #26a79c 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-cta-bar .btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sticky-cta-bar .btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Enhanced stat cards */
.stat-card {
    border: 1px solid #e9ecef !important;
    background: white;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Premium stat cards */
.stat-card-premium {
    border: 1px solid #e9ecef !important;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
}

.stat-card-premium:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.stat-card-premium .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vp-navy);
    margin-bottom: 0.5rem;
}

.stat-card-premium .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-premium.small .stat-number {
    font-size: 1.5rem;
}

.stat-card-premium.small .stat-label {
    font-size: 0.75rem;
}

/* Company name styling - Simplified for cleaner hero */
.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
    margin-bottom: 0.75rem !important;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    max-width: 360px; /* Increased max-width as requested */
}

/* Hero CTA Button */
.claim-cta-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
}

.claim-cta-hero:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    color: white !important;
}

/* Trusted preview badge styling */
.trusted-preview-badge {
    opacity: 0.7;
    font-style: italic;
}

/* Share buttons styling */
.share-btn {
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.share-btn:hover {
    background: rgba(255,255,255,0.15) !important;
    color: white !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px);
}

.share-btn.copied {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
    color: #22c55e !important;
}

/* Enhanced CTA Styles */
.enhanced-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.enhanced-claim-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.enhanced-claim-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Floating Bottom-Right CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    max-width: 280px;
    animation: pulse-glow 2s infinite;
}

.floating-cta-text {
    flex: 1;
}

.floating-cta .btn {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.floating-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.6);
    }
}

/* Professional Share Buttons with Teal Branding */
.share-btn.btn.btn-outline-primary {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid #0f766e !important;
    color: #0f766e !important;
    background: transparent !important;
}

.share-btn.btn.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
    background-color: #0f766e !important;
    border-color: #0f766e !important;
    color: white !important;
}

.share-btn.btn.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.25);
    border-color: #0f766e !important;
    color: #0f766e !important;
    background-color: transparent !important;
}

.share-btn.btn.btn-outline-primary:active {
    background-color: #0d5f5a !important;
    border-color: #0d5f5a !important;
    color: white !important;
}

.share-btn i {
    font-size: 0.9rem;
    color: inherit !important;
}

/* Clean info items styling */
.info-item {
    transition: all 0.2s ease;
}

.info-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-icon {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: #0f766e !important;
}

/* Teal-branded edit buttons */
.info-item .btn-outline-primary {
    border-color: #0f766e;
    color: #0f766e;
    background: transparent;
    transition: all 0.2s ease;
}

.info-item .btn-outline-primary:hover {
    background-color: #0f766e;
    border-color: #0f766e;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.2);
}

.info-item .btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.25);
    border-color: #0f766e;
}

.info-item .btn-outline-primary:active {
    background-color: #0d5f5a;
    border-color: #0d5f5a;
}

/* Professional Fleet Overview Section */
.fleet-overview-container {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.fleet-header {
    text-align: center;
    margin-bottom: 2rem;
}

.fleet-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fleet-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Fleet Statistics Grid */
.fleet-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fleet-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fleet-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #0f766e;
}

.fleet-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f766e, #0d5f5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.fleet-stat-card .stat-icon i {
    color: white;
    font-size: 1.25rem;
}

.fleet-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.fleet-stat-card .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Signals */
.fleet-trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.trust-signal-item i {
    color: #0f766e;
    font-size: 0.875rem;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
    .company-header {
        padding: 2rem 0 1.5rem 0;
        min-height: auto;
    }

    /* Mobile Company Header - Central Vertical Layout */
    .company-header .row {
        flex-direction: column;
        text-align: center;
    }

    .company-header .col-lg-8,
    .company-header .col-lg-4 {
        width: 100%;
        max-width: none;
        margin-bottom: 1.5rem;
    }

    .company-header .row.align-items-center {
        justify-content: center;
    }

    /* Company Logo - Centered */
    .company-header .col-auto {
        margin: 0 auto 1rem auto;
    }

    .company-logo {
        margin: 0 auto;
    }

    /* Company Details - Centered */
    .company-header .col {
        text-align: center;
    }

    .company-name {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1rem !important;
    }

    /* Status Badges - Centered */
    .company-header .d-flex.flex-wrap.gap-2 {
        justify-content: center;
        margin-bottom: 1.5rem !important;
    }

    /* Website Button - Centered */
    .company-header .mb-3 {
        text-align: center;
        margin-bottom: 1.5rem !important;
    }

    /* Hero Subtext - Better Spacing */
    .hero-subtext {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    /* Hero CTAs - Centered and Stacked */
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-ctas .btn {
        width: 280px;
        max-width: 90%;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    /* Fleet Analytics Summary - Mobile Horizontal Layout */
    .company-header .col-lg-4 {
        padding: 0 1rem;
        margin-bottom: 2rem !important;
    }

    .company-header .col-lg-4 .row {
        justify-content: center;
        gap: 0.5rem;
        margin: 0;
        flex-wrap: wrap;
    }

    .company-header .col-lg-4 .col-6 {
        flex: 0 0 auto;
        max-width: none;
        width: auto;
        min-width: 80px;
        margin-bottom: 0;
    }

    .company-header .col-lg-4 .bg-white.bg-opacity-10 {
        padding: 0.75rem 1rem !important;
        margin: 0 0.125rem;
        min-width: 80px;
        text-align: center;
        border-radius: 8px;
    }

    .company-header .col-lg-4 .h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
        font-weight: 700;
    }

    .company-header .col-lg-4 small {
        font-size: 0.7rem !important;
        line-height: 1.2;
        opacity: 0.9;
    }

    /* Force horizontal layout for mobile fleet stats */
    .company-header .text-center .row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }

    /* Company Info Panel - Mobile Adjustments */
    .company-info-panel {
        position: relative !important;
        top: auto !important;
        margin-bottom: 2rem;
        max-height: none !important;
    }

    .fleet-overview-container {
        padding: 1.5rem;
        margin: 0 -0.5rem;
    }

    .fleet-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .fleet-stat-card {
        padding: 1rem;
    }

    .fleet-stat-card .stat-number {
        font-size: 1.5rem;
    }

    .fleet-trust-signals {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .fleet-title {
        font-size: 1.5rem;
    }

    .claim-cta, .claim-cta-hero {
        width: 100%;
        margin-bottom: 1rem;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .stat-card {
        margin-bottom: 1rem;
    }
}

/* Professional Fleet Portfolio Section */
.fleet-portfolio-container {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
}

.fleet-portfolio-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.fleet-portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.fleet-portfolio-title i {
    color: #0f766e;
}

.fleet-portfolio-content {
    padding: 2rem;
}

/* Fleet Filters */
.fleet-filters {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.filter-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.fleet-filter-select {
    min-width: 160px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.fleet-filter-select:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.1);
}

/* Role Sections */
.fleet-role-section {
    margin-bottom: 2.5rem;
}

.role-header {
    margin-bottom: 1rem;
}

.role-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.role-count {
    background: linear-gradient(135deg, #0f766e, #0d5f5a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 2rem;
    text-align: center;
}

/* Professional Fleet Table */
.fleet-table-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.professional-table {
    margin: 0;
    background: white;
}

.fleet-table-header {
    background: linear-gradient(135deg, #0f766e, #0d5f5a);
}

.fleet-th {
    background: transparent !important;
    border: none !important;
    padding: 1rem 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white !important;
    position: relative;
}

.fleet-th.copy-column {
    width: 60px;
    text-align: center;
    padding: 1rem 0.5rem;
}

.th-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}

.sort-icon {
    opacity: 0.7;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: all 0.2s ease;
}

.fleet-th.sortable:hover {
    background: rgba(255,255,255,0.1) !important;
    cursor: pointer;
}

.fleet-th.sortable:hover .sort-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Vessel Rows */
.vessel-row {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

/* Removed hover effect for vessel rows */
}

.vessel-row td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border: none;
    font-size: 0.9rem;
}

.vessel-row td strong {
    color: #1f2937;
    font-weight: 600;
}

.vessel-row .text-muted {
    color: #6b7280 !important;
    font-size: 0.8rem;
}

.imo-number {
    background: #f1f5f9;
    color: #0f766e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Copy Cell Styling */
.copy-cell {
    text-align: center;
    width: 60px;
    padding: 1rem 0.5rem !important;
}

.copy-row-btn {
    color: #0f766e !important;
    padding: 0.5rem !important;
    border: none !important;
    background: none !important;
    transition: color 0.2s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.copy-row-btn:hover {
    color: #14b8a6 !important;
}

.copy-row-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 118, 110, 0.2) !important;
    outline: none;
}

.copy-row-btn:active {
    color: #0d5f5a !important;
}

.copyable-row {
    cursor: pointer;
}

.copyable-row:hover .copy-row-btn {
    opacity: 1;
}

/* Actions Column Styling */
.actions-column {
    width: 80px;
    text-align: center;
}

.actions-cell {
    text-align: center;
    width: 80px;
    padding: 1rem 0.5rem !important;
}

.actions-cell .d-flex {
    justify-content: center;
    align-items: center;
}

/* View vessel button styling */
.view-vessel-btn {
    color: #0d6efd !important;
    padding: 0.5rem !important;
    border: none !important;
    background: none !important;
    transition: color 0.2s ease;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none !important;
}

.view-vessel-btn:hover {
    color: #0b5ed7 !important;
}

.view-vessel-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2) !important;
    outline: none;
}

/* Update copy button to use secondary color for better contrast with view button */
.copy-row-btn {
    color: #6c757d !important;
}

/* Fleet Tabs Styling */
.fleet-tabs-container {
    margin-top: 1.5rem;
}

.fleet-tabs-nav {
    display: flex;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fleet-tabs-nav::-webkit-scrollbar {
    display: none;
}

.fleet-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.fleet-tab-btn:hover {
    background: rgba(15, 118, 110, 0.05);
    color: #0f766e;
}

.fleet-tab-btn.active {
    background: #0f766e;
    color: white;
    box-shadow: 0 1px 3px rgba(15, 118, 110, 0.2);
}

.fleet-tab-btn .tab-label {
    font-weight: 600;
}

.fleet-tab-btn .tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.fleet-tab-btn:not(.active) .tab-count {
    background: #e5e7eb;
    color: #6b7280;
}

.fleet-tab-pane {
    display: none;
}

.fleet-tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Company Information Panel Styling - Sticky Positioning */
.company-info-panel {
    transition: box-shadow 0.2s ease;
    position: sticky;
    top: 80px;
    z-index: 100;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Removed hover effect for company info panel */

.company-info-panel .info-item {
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb !important;
}

/* Removed hover effect for info items */

.company-info-panel .info-icon i {
    font-size: 1.1rem;
}

.company-info-panel .text-muted {
    color: #6b7280 !important;
}

/* Actionable Hints Styling */
.company-info-panel .fa-lightbulb {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fleet-portfolio-header {
        padding: 1rem 1.5rem;
    }

    .fleet-portfolio-content {
        padding: 1.5rem;
    }
    
    .company-info-panel {
        margin-bottom: 2rem;
    }
    
    .company-info-panel .info-item {
        margin-bottom: 1rem !important;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    /* Fleet Tabs Mobile Responsive */
    .fleet-tabs-nav {
        padding: 0.125rem;
        gap: 0.125rem;
    }
    
    .fleet-tab-btn {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.125rem;
    }
    
    .fleet-tab-btn .tab-label {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .fleet-tab-btn .tab-count {
        font-size: 0.7rem;
        padding: 0.0625rem 0.375rem;
    }
    
    .fleet-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .fleet-table {
        min-width: 600px;
    }
}

    .select-filters {
        width: 100%;
    }

    .fleet-filter-select {
        min-width: auto;
        flex: 1;
    }

    .fleet-table-container {
        overflow-x: auto;
    }

    .fleet-th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .vessel-row td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .role-title {
        font-size: 1rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .floating-cta-content {
        max-width: 250px;
        padding: 0.875rem;
    }

    /* Mobile sticky CTA */
    .sticky-cta-bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1060 !important;
        background: var(--vp-teal) !important;
        border-top: 3px solid rgba(255,255,255,0.2);
        padding: 1rem;
    }

    .sticky-cta-bar .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 12px;
    }

    /* Mobile share buttons */
    .share-btn span {
        display: none !important;
    }

    /* 2x2 grid for stat cards on mobile */
    .fleet-stats-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .fleet-stats-mobile .stat-card {
        margin-bottom: 0;
    }
}

/* Enhanced Fleet Table Styles */
.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.sortable:hover {
    background-color: rgba(46, 196, 182, 0.1) !important;
}

.sortable.sort-asc i {
    transform: rotate(180deg);
}

.sortable.sort-desc i {
    transform: rotate(0deg);
}

.imo-number {
    background: rgba(46, 196, 182, 0.1);
    color: var(--vp-teal);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.vessel-row.hidden {
    display: none !important;
}

.role-section.hidden {
    display: none !important;
}

/* Filter controls */
.input-group-text {
    background: var(--vp-teal);
    color: white;
    border-color: var(--vp-teal);
}

.form-control:focus, .form-select:focus {
    border-color: var(--vp-teal);
    box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.25);
}

/* Claim Button Micro-Animation */
.claim-btn:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.share-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Animated Progress Bar */
.progress-bar {
    transition: width 0.8s ease-in-out;
}

.completion-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Glowing Lock Animation */
.glow-lock {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        color: #f59e0b;
        text-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
    }
    50% {
        color: #fbbf24;
        text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    }
}

/* Placeholder Card Hover Effects */
.placeholder-item {
    transition: all 0.2s ease;
}

.placeholder-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Benefits Callout Box */
.benefits-callout {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1); }
    50% { box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2); }
}

/* Hover effects for "Why claim?" link */
.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Ensure no gap between navbar and hero section */
.company-header {
    margin-top: 0 !important;
}

/* Vessel Pagination - Initially hide rows beyond first 15 */
.vessel-row:nth-child(n+16) {
    display: none !important;
}

/* Override for when pagination is active */
.pagination-active .vessel-row {
    display: none !important;
}

.pagination-active .vessel-row.show-row {
    display: table-row !important;
}

/* Pagination controls styling */
.pagination-container {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.pagination .page-link {
    color: #0f766e;
    border-color: #e2e8f0;
    background: white;
}

.pagination .page-link:hover {
    color: white;
    background-color: #0f766e;
    border-color: #0f766e;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-info {
    background-color: #0f766e !important;
    color: white !important;
    border-color: #0f766e !important;
    cursor: default !important;
}

.page-info:hover {
    background-color: #0f766e !important;
    color: white !important;
    border-color: #0f766e !important;
}

/* Persistent CTA Bar Styling */
.persistent-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1040;
    padding: 12px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.persistent-cta-bar.show {
    transform: translateY(0);
}

/* End-of-Page CTA Section */
.end-page-cta-section {
    position: relative;
    overflow: hidden;
}

.end-page-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url("#grid#grid")"/></svg>');
    opacity: 0.3;
}

.end-page-cta-section .container {
    position: relative;
    z-index: 1;
}

/* Pro Feature Button Styling */
.pro-feature-btn {
    position: relative;
    transition: all 0.2s ease;
}

.pro-feature-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pro-feature-btn .fa-lock {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.pro-feature-btn:hover .fa-lock {
    opacity: 1;
}

/* Pro Interest Button */
.pro-interest-btn {
    transition: all 0.2s ease;
}

.pro-interest-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}