/* Search Summary Bar */
.search-summary {
    background: var(--dark-navy);
    color: white;
    padding: 24px 0;
    border-radius: 0 0 40px 40px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.summary-item:last-child { border-right: none; }

.summary-icon {
    width: 40px;
    height: 40px;
    background: rgba(20, 184, 166, 0.2);
    color: var(--primary-tosca);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.summary-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.summary-value {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Filter Sidebar */
.filter-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 100px;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-section {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h6 {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.form-check-input:checked {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 8px;
}

/* Schedule Card */
.schedule-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-tosca);
}

.ship-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.ship-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.ship-class {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #f1f5f9;
    color: var(--text-gray);
}

.time-block {
    text-align: center;
}

.time-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: 'Poppins', sans-serif;
}

.time-port {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 500;
}

.duration-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;
}

.duration-text {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 6px;
}

.duration-bar {
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    position: relative;
}

.duration-bar::before,
.duration-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-tosca);
}

.duration-bar::before { left: 0; }
.duration-bar::after { right: 0; }

.duration-bar i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-tosca);
    background: white;
    padding: 0 4px;
    font-size: 0.9rem;
}

.price-tag {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ef4444;
    font-family: 'Poppins', sans-serif;
}

.btn-select {
    background: var(--primary-navy);
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
}

.btn-select:hover {
    background: var(--primary-tosca);
    color: white;
    transform: translateX(4px);
}

.sort-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-navy);
    background: white;
}

.sort-select:focus {
    border-color: var(--primary-tosca);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.result-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.result-count strong {
    color: var(--primary-navy);
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}
.wa-float:hover {
    transform: scale(1.1);
    color: white;
}